/* ============================================
   PASSWORD RESET SEITE - ELEGANT & MODERN
   ============================================ */

.reset-page {
    background: #f8fafc;
}

.reset-container {
    padding: 4rem 0;
}

/* ============================================
   RESET CARD
   ============================================ */

.reset-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

/* ============================================
   HEADER
   ============================================ */

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

.reset-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.3);
}

.reset-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.reset-subtitle {
    font-size: 0.938rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.reset-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reset-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #22c55e;
    flex-shrink: 0;
}

.reset-success-content {
    flex: 1;
}

.reset-success-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #15803d;
    margin: 0 0 0.5rem 0;
}

.reset-success-text {
    font-size: 0.938rem;
    color: #166534;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FORM
   ============================================ */

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reset-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reset-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a202c;
}

.reset-label i {
    font-size: 1rem;
    color: #0096ff;
}

.reset-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #f8fafc;
    color: #1a202c;
    transition: all 0.2s ease;
}

.reset-input:focus {
    outline: none;
    border-color: #0096ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1);
}

.reset-input::placeholder {
    color: #cbd5e0;
}

.reset-input--error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
}

.reset-input--error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.reset-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #ef4444;
    font-weight: 500;
}

.reset-error i {
    font-size: 1rem;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.reset-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.3);
}

.reset-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.4);
}

.reset-submit-btn:active {
    transform: translateY(0);
}

.reset-submit-btn i {
    font-size: 1.25rem;
}

/* ============================================
   BACK LINK
   ============================================ */

.reset-back {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.reset-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    color: #718096;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.reset-back-link:hover {
    color: #0096ff;
    gap: 0.75rem;
}

.reset-back-link i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.reset-back-link:hover i {
    transform: translateX(-4px);
}

/* ============================================
   INFO BOX
   ============================================ */

.reset-info-box {
    background: rgba(0, 150, 255, 0.05);
    border: 1px solid rgba(0, 150, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.reset-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 150, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0096ff;
    flex-shrink: 0;
}

.reset-info-content {
    flex: 1;
}

.reset-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.reset-info-text {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .reset-container {
        padding: 3rem 0;
    }

    .reset-card {
        padding: 2rem;
    }

    .reset-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .reset-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .reset-container {
        padding: 2rem 0;
    }

    .reset-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .reset-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .reset-title {
        font-size: 1.375rem;
    }

    .reset-subtitle {
        font-size: 0.875rem;
    }

    .reset-input {
        padding: 0.875rem 1rem;
        font-size: 0.938rem;
    }

    .reset-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .reset-success {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .reset-success-icon {
        margin: 0 auto;
    }

    .reset-info-box {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .reset-info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .reset-card {
        padding: 1.25rem;
    }

    .reset-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .reset-title {
        font-size: 1.25rem;
    }

    .reset-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .reset-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.938rem;
    }

    .reset-success-icon,
    .reset-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .reset-success-title,
    .reset-info-title {
        font-size: 0.938rem;
    }

    .reset-success-text,
    .reset-info-text {
        font-size: 0.813rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.reset-card {
    animation: fadeInUp 0.4s ease;
}

.reset-info-box {
    animation: fadeInUp 0.5s ease;
}

.reset-success {
    animation: fadeInUp 0.3s ease;
}