/* Password Reset Form Styles with Mint Green Theme */
:root {
    --primary-color: #1abc9c;
    --primary-dark: #16a085;
    --primary-light: #48c9b0;
    --primary-lighter: #d1f2eb;
    --primary-rgb: 26, 188, 156;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
}

.reset-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-card {
    max-width: 450px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: var(--bg-primary);
    border: none;
    transition: all 0.3s ease;
    padding: 2rem;
}

.reset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.reset-logo {
    max-width: 120px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.reset-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.reset-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.reset-form .form-control {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding-left: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.reset-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reset-btn {
    height: 48px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.reset-btn:hover, .reset-btn:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.back-link {
    text-align: center;
    margin-top: 1rem;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.reset-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert styles */
.reset-alert {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .reset-card {
        border-radius: 0;
        box-shadow: none;
        height: 100vh;
        max-width: 100%;
    }
    
    .reset-card:hover {
        transform: none;
        box-shadow: none;
    }
}
