.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.auth-logo h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form label {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.auth-form input {
    padding: 14px 16px;
    background: var(--item);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 45, 55, 0.1);
}

.auth-form input::placeholder {
    color: var(--text-dark);
}

.auth-form small {
    font-size: 11px;
    color: var(--text-dark);
    margin-top: -4px;
}

.auth-form .btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.auth-footer p {
    color: var(--text-dim);
    font-size: 14px;
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.alert-error {
    background: rgba(200, 45, 55, 0.1);
    border: 1px solid rgba(200, 45, 55, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(50, 180, 80, 0.1);
    border: 1px solid rgba(50, 180, 80, 0.3);
    color: #50b850;
}

.alert p {
    margin: 0;
    padding: 2px 0;
}
