﻿.auth-wrapper {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 34px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.auth-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
    color: #111827;
}

.auth-sub {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.auth-step {
    text-align: center;
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 24px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.form-control {
    height: 44px;
    border-radius: 8px;
    font-size: 14px;
}

.text-danger {
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.password-container {
    position: relative;
}

    .password-container input {
        padding-right: 45px;
    }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
}

    .password-toggle:hover {
        color: #2563eb;
    }

.btn-next {
    background: #4f46e5;
    border: none;
    height: 44px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

    .btn-next:hover {
        background: #4338ca;
    }

.field-validation-error {
    color: #dc3545; /* bootstrap red */
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

