*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    background:
        radial-gradient(
            circle at top left,
            #dbeafe,
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            #e0e7ff,
            transparent 40%
        ),
        #f5f7ff;
}


.forgot-wrapper{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}


.forgot-card{

    width:100%;

    max-width:430px;

    background:#fff;

    padding:40px;

    border-radius:24px;

    text-align:center;

    box-shadow:
        0 25px 70px rgba(31,41,55,.12);

    animation:fadeUp .5s ease;
}


.logo-box{

    margin-bottom:20px;
}


.logo-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    box-shadow:
        0 15px 30px
        rgba(37,99,235,.25);
}


.logo-letter{

    color:#fff;

    font-size:36px;

    font-weight:800;
}


.forgot-card h2{

    color:#111827;

    font-size:27px;

    font-weight:700;

    margin-bottom:8px;
}


.subtitle{

    color:#6b7280;

    font-size:14px;

    line-height:22px;

    margin-bottom:25px;
}


.form-group{

    text-align:left;

    margin-bottom:20px;
}


.form-group label{

    display:block;

    margin-bottom:8px;

    color:#374151;

    font-size:14px;

    font-weight:600;
}


.input-box{

    position:relative;
}


.input-box i{

    position:absolute;

    left:17px;

    top:50%;

    transform:translateY(-50%);

    color:#9ca3af;

    font-size:16px;
}


.input-box input{

    width:100%;

    height:55px;

    border:1px solid #d1d5db;

    border-radius:14px;

    padding:0 18px 0 48px;

    font-size:15px;

    outline:none;

    transition:.3s;
}


.input-box input:focus{

    border-color:#2563eb;

    box-shadow:
        0 0 0 4px
        rgba(37,99,235,.12);
}


.reset-btn{

    width:100%;

    height:55px;

    border:0;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color:#fff;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}


.reset-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(37,99,235,.25);
}


.back-login{

    margin-top:23px;
}


.back-login a{

    color:#6b7280;

    text-decoration:none;

    font-size:14px;

    font-weight:600;
}


.back-login a:hover{

    color:#2563eb;
}


.alert{

    border-radius:12px;

    font-size:14px;

    text-align:left;

    margin-bottom:20px;
}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }
}


@media(max-width:480px){

    .forgot-card{

        padding:28px 20px;

        border-radius:20px;
    }

    .forgot-card h2{

        font-size:24px;
    }

}