/* Password Reset Elegant Styling */
.password-container {
    position: relative;
}

.password-requirements {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.password-requirements h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.requirement-icon.invalid {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.requirement-icon.valid {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.requirement-text {
    color: #6c757d;
    transition: color 0.3s ease;
}

.requirement-item.valid .requirement-text {
    color: #155724;
    font-weight: 500;
}

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

.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

.password-toggle:hover {
    color: #495057;
}

.btn-continue {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-continue:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.btn-continue:disabled {
    background: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #dc3545 0%, #ffc107 50%, #28a745 100%);
}

.auth-cover .title h1 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.signin-wrapper {
    padding: 2rem;
}

.form-wrapper h6 {
    color: #495057;
    font-weight: 600;
    font-size: 1.1rem;
}

.text-sm {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .password-requirements {
        padding: 1rem;
    }
    
    .requirement-item {
        font-size: 0.8rem;
    }
    
    .signin-wrapper {
        padding: 1.5rem;
    }
}
