.auth-page-container {
    padding-top: 100px;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1D1D3A, #1573D4);
}

.auth-wrapper {
    max-width: 450px;
    width: 100%;
    background-color: #FFFBF2;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2.2rem;
    color: #1D1D3A;
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 1rem;
    color: #1D1D3A;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1D1D3A;
}

.form-group .form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    padding-left: 3rem;
    border: 2px solid rgba(29, 29, 58, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background-color: #FFFBF2;
    color: #1D1D3A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #1573D4;
    box-shadow: 0 0 0 4px rgba(21, 115, 212, 0.2);
}

.form-group .input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(10%);
    color: #1D1D3A;
    opacity: 0.5;
    transition: color 0.3s ease;
}

.form-group .form-control:focus + .input-icon {
    color: #1573D4;
    opacity: 1;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: #1573D4;
}

.form-check-label {
    color: #1D1D3A;
    cursor: pointer;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #1573D4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-links p {
    color: #1D1D3A;
    opacity: 0.8;
    margin-top: 1rem;
}