.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
    align-self: flex-end;
}

.flex-column>label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 5px;
    transition: 0.2s ease-in-out;
}

.input {
    margin-left: 5px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}



.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.form p {
    margin-bottom: 0;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

/* .p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
} */


.btn:hover {
    border: 1px solid #2d79f3;
    ;
}

.input-group-text {
    border: transparent;
    background-color: transparent;
}


.inputForm.input-error {
    border: 1.5px solid rgb(249, 40, 40);
}

.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.2em;
    margin: 0 5px;
}




@media (max-width: 768px) {
    .form {
        width: 100%;
    }
}

a:hover {
    color: #55acee;
}


@media (max-width: 400px) {
    .otp-input {
        /* width: 42px !important; */
        margin: 0 2px !important;
    }


    #otpSection .gap-1 {
        gap: 0rem !important;
    }

    .form {
        padding: 0 10px;
    }
}
