﻿/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:where(.container, form, .input-field) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.otpBox {
    background: #fff;
    border-radius: 12px;
    row-gap: 20px;
    box-shadow: 0 15px 16px rgb(0 0 0 / 23%);
    margin: 6% auto;
    width: 523px;
}
.otpBody {
    padding: 30px 30px;
    text-align: center;
}
.header {
    background: #1b4fab;
    border-radius: 12px 12px 0 0;
    text-align:center;
}
    .header h4 {
        color: white;
        padding: 21px;
        margin-bottom: unset;
    }

    .container h4 {
        font-size: 1.25rem !important;
        color: #333;
        font-weight: 500;
    }

.input-field {
    flex-direction: row;
}

    .input-field input {
        height: 35px;
        width: 257px;
        border-radius: 6px;
        outline: none;
        font-size: 1.125rem;
        text-align: center;
        border: 1px solid #ddd;
        margin-top: 10px;
    }

    .input-field input:focus {
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    }

    .input-field input::-webkit-inner-spin-button,
    .input-field input::-webkit-outer-spin-button {
        display: none;
    }

.buttonStyle {
    margin-top: 19px;
    width: 121px;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 6px;
    background: #2f73ec;
    transition: all 0.2s ease;
}

    .buttonStyle.active {
        background: #10a926;
    }

    .buttonStyle:hover {
        background: #2866d5;
        color: #fff;
    }

.buttonCancel {
    text-decoration: none;
    margin-top: 19px;
    width: 121px;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 9px 27px;
    cursor: pointer;
    border-radius: 6px;
    background: #f55959;
    transition: all 0.2s ease;
}
    .buttonCancel:hover {
        background: #f87f7f;
        color: #fff;
    }
    .buttonCancel.active {
        background: #f87f7f;
    }


.textpara {
    color: #767e77;
    font-size: 13px;
}

    .textpara label {
        font-size: 13px;
    }


    label, a {
        font-size: 14px;
    }

#submitloader img{
    height:26px;
}