body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:linear-gradient(
        135deg,
        #0daae3,
        #dee0e4
    );
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.forgot-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.forgot-card{
    width:420px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.logo-section{
    text-align:center;
    margin-bottom:25px;
}

.logo-section img{
    width:90px;
    margin-bottom:10px;
}

.logo-section h2{
    color:#0d6efd;
    margin-bottom:10px;
}

.logo-section p{
    color:#666;
    font-size:14px;
}

.input-group-custom{
    margin-bottom:20px;
}

.input-group-custom label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.input-group-custom input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
}

.input-group-custom input:focus{
    outline:none;
    border-color:#0d6efd;
    box-shadow:0 0 10px rgba(13,110,253,.2);
}

.btn-reset{
    width:100%;
    border:none;
    padding:13px;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.btn-reset:hover{
    background:#0b5ed7;
}

.back-login{
    display:block;
    text-align:center;
    margin-top:15px;
    text-decoration:none;
    color:#0d6efd;
    font-size:14px;
}

.alert-success{
    background:#d1e7dd;
    color:#0f5132;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}

.alert-danger{
    background:#f8d7da;
    color:#842029;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}