.password-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin: 2rem auto;
}

.password-reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.password-reset-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
}

.password-reset-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    margin-bottom: 2rem;
}

.password-reset-header h2 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.password-reset-body {
    padding: 0 2rem 2rem;
}

.password-reset-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
}

.password-reset-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.password-reset-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.password-reset-form .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.password-reset-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.password-reset-form .btn-primary:active {
    transform: translateY(0);
}

.password-reset-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.password-strength-meter {
    height: 4px;
    background-color: #e9ecef;
    margin-top: 0.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .password-reset-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .password-reset-header {
        padding: 1.5rem 0 1rem;
    }
    
    .password-reset-form .btn-primary {
        width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.password-reset-form .form-group {
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}

.password-reset-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.password-reset-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.password-reset-form .form-group:nth-child(3) { animation-delay: 0.3s; }

.password-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 3rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    color: white;
}

.password-image h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.password-form {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.password-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.password-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 2rem;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.btn-reset {
    background: var(--primary);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .password-container {
        margin: 1rem;
    }
    
    .password-form {
        padding: 2rem 1rem;
    }
}
