
.cls__danger{
    color:red;
}

#otpModal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(0 0 0 / 94%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#otpModalContent {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
}
#otpModalContent h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}
#otpModalContent input[type="text"] {
    width: 90%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
}
#otpModalContent button {
    padding: 10px 20px;
    background-color: #007cba;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#otpModalContent button:hover {
    background-color: #005fa3;
}