﻿.title {
    max-width: 400px;
    margin: auto;
    text-align: center;
    font-family: "Poppins", sans-serif;
    h3

{
    font-weight: bold;
}

p {
    font-size: 12px;
    color: #118a44;
    &.msg

{
    color: initial;
    text-align: initial;
    font-weight: bold;
}

}
}

.otp-input-fields {
    margin: auto;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px 40px;
    input

{
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #002C5F;
    text-align: center;
    outline: none;
    font-size: 16px;
    &::-webkit-outer-spin-button, &::-webkit-inner-spin-button

{
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
&[type=number] {
    -moz-appearance: textfield;
}

&:focus {
    border-width: 2px;
    border-color: darken(#002C5F, 5%);
    font-size: 20px;
}

}
}

.result {
    max-width: 400px;
    margin: auto;
    padding: 24px;
    text-align: center;
    p

{
    font-size: 24px;
    font-family: 'Antonio', sans-serif;
    opacity: 1;
    transition: color 0.5s ease;
    &._ok

{
    color: green;
}

&._notok {
    color: red;
    border-radius: 3px;
}

}
}
