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

.password-image {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1672191125028-81baf196a018?q=80&w=1527&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 2rem;
    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);
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

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