/* ===========================
   FORGOT PASSWORD PAGE
=========================== */

.forgot-page{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:
        radial-gradient(circle at top left,
        rgba(255,122,0,.15),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(23,52,94,.15),
        transparent 35%),

        #f8fafc;
}

.forgot-card{
    width:100%;
    max-width:500px;
    background:#ffffff;
    padding:50px 40px;
    border-radius:30px;
    text-align:center;
    box-shadow:
        0 25px 60px rgba(15,23,42,.10);
    position:relative;
    overflow:hidden;
}

.forgot-card::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:
        linear-gradient(
            135deg,
            rgba(255,122,0,.15),
            rgba(23,52,94,.15)
        );
    border-radius:50%;
}

.forgot-card h1{
    font-size:36px;
    color:#17345E;
    margin-bottom:15px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.forgot-card p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

/* FORM */
.forgot-card form{
    position:relative;
    z-index:2;
}

/* INPUT */
.forgot-card input{
    width:100%;
    height:58px;
    border:2px solid #e2e8f0;
    border-radius:16px;
    padding:0 22px;
    font-size:15px;
    color:#0f172a;
    background:#f8fafc;
    outline:none;
    transition:.3s;
    margin-bottom:22px;
    box-sizing:border-box;
}

.forgot-card input:focus{
    border-color:#ff7a00;
    background:#fff;
    box-shadow:
        0 0 0 4px
        rgba(255,122,0,.12);
}

.forgot-card input::placeholder{
    color:#94a3b8;
}

/* BUTTON */
.forgot-card button{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;
    background:
        linear-gradient(
            135deg,
            #17345E,
            #00aaff
        );
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.forgot-card button:hover{
    transform:translateY(-3px);
    box-shadow:
        0 18px 35px
        rgba(23,52,94,.25);
}

/* BACK LINK */
.forgot-card a{
    display:inline-block;
    margin-top:25px;
    color:#17345E;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    position:relative;
    z-index:2;
}

.forgot-card a:hover{
    color:#00aaff;
}

/* MOBILE */
@media(max-width:576px){

    .forgot-card{
        padding:40px 25px;
        border-radius:24px;
    }

    .forgot-card h1{
        font-size:30px;
    }

    .forgot-card p{
        font-size:14px;
    }

    .forgot-card input,
    .forgot-card button{
        height:54px;
    }
}