﻿
body {
    background: linear-gradient(135deg, #ecfeff, #f8fafc);
}

.fade-in {
    animation: fadeInUp .9s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forgot-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-card {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
    animation-delay: .2s;
}

.forgot-header {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    color: #fff;
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

/* أيقونة نابضة */
.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.forgot-header h3 {
    margin: 0;
    font-weight: 700;
}

.forgot-header p {
    font-size: 14px;
    opacity: .95;
    margin-top: 8px;
}

.forgot-body {
    padding: 32px;
}

.form-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-control {
    border-radius: 14px;
    padding: 13px 16px;
    transition: .3s ease;
}

    .form-control:focus {
        border-color: #14b8a6;
        box-shadow: 0 0 0 .25rem rgba(20,184,166,.15);
    }

/* زر متحرك */
.btn-send {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border: none;
    border-radius: 14px;
    padding: 13px;
    font-weight: 600;
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-send i {
        margin-left: 6px;
    }

    .btn-send:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(20,184,166,.35);
    }

    .btn-send::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.15);
        transform: translateX(-100%);
        transition: .4s;
    }

    .btn-send:hover::after {
        transform: translateX(0);
    }

.hint-text {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

    .hint-text i {
        color: #14b8a6;
        margin-left: 4px;
    }
