.title {
    max-width: 400px;
    margin: auto;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.title h3 {
    font-weight: bold;
}

.title p {
    font-size: 12px;
    color: #900000;
}

.title p.msg {
    color: initial;
    text-align: initial;
    font-weight: bold;
}

.otp-input-fields {
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 8px 0px #02025044;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px;
}

.otp-input-fields input {
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #900000;
    text-align: center;
    outline: none;
    font-size: 16px;
}

.otp-input-fields input:focus {
    border-width: 2px;
    border-color: #900000;
    font-size: 20px;
}

.result {
    max-width: 400px;
    margin: auto;
    padding: 24px;
    text-align: center;
}

.result p {
    font-size: 24px;
    font-family: "Antonio", sans-serif;
    opacity: 1;
    transition: color 0.5s ease;
}

.result p._ok {
    color: green;
}

mark {
    color: #900000;
    background: none;
}

.otp-form {
    text-align: center;
}

.otp-form button {
    color: #fff;
    background: #900000;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    display: table;
    margin: 15px auto;
}