/*=========================================================
    FORGOT PASSWORD
    Manasadwip Ramakrishna Mission Praktani Samsad
=========================================================*/

* {
    box-sizing: border-box;
}


/*=========================================================
                        BODY
=========================================================*/

body {

    margin: 0;

    padding: 0;

    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #f4f7fb,
            #e9eff8
        );

    font-family:
        "Poppins",
        Arial,
        sans-serif;

}


/*=========================================================
                    WRAPPER
=========================================================*/

.forgot-wrapper {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px 15px;

}


/*=========================================================
                    CARD
=========================================================*/

.forgot-card {

    width: 100%;

    max-width: 470px;

    background: #ffffff;

    border-radius: 18px;

    padding: 40px;

    box-shadow:
        0 15px 45px
        rgba(0, 0, 0, 0.10);

}


/*=========================================================
                    ICON
=========================================================*/

.forgot-icon {

    width: 75px;

    height: 75px;

    margin: auto;

    border-radius: 50%;

    background: #eaf2ff;

    color: #0d6efd;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

}


/*=========================================================
                    FORM
=========================================================*/

.form-control {

    min-height: 48px;

    border-radius: 8px;

}


.input-group-text {

    background: #f8f9fa;

    border-radius: 8px 0 0 8px;

}


.input-group .form-control {

    border-radius: 0 8px 8px 0;

}


.form-label {

    margin-bottom: 8px;

}


/*=========================================================
                    BUTTON
=========================================================*/

.btn {

    min-height: 48px;

    border-radius: 8px;

    font-weight: 600;

}


/*=========================================================
                    OTP
=========================================================*/

.otp-input {

    text-align: center;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 8px;

    padding-left: 15px;

}


/*=========================================================
                    ALERT
=========================================================*/

.alert {

    border-radius: 10px;

}


/*=========================================================
                SPINNER
=========================================================*/

.spinner-border-sm {

    vertical-align: middle;

}


/*=========================================================
                    LINKS
=========================================================*/

a {

    color: #0d6efd;

}


a:hover {

    text-decoration: underline !important;

}


/*=========================================================
                    MOBILE
=========================================================*/

@media (max-width: 576px) {

    .forgot-wrapper {

        padding: 20px 12px;

    }


    .forgot-card {

        padding: 28px 20px;

        border-radius: 14px;

    }


    .forgot-icon {

        width: 65px;

        height: 65px;

        font-size: 28px;

    }


    .otp-input {

        font-size: 21px;

        letter-spacing: 5px;

    }

}