.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
    backdrop-filter: blur(5px);
}

.overPop {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.otp {
    width: 80%;
    max-width: 500px;
}

.inputBox {
    margin: 2.2rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.inputBox input {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 24px;
    outline: none;
    transition: border-color 0.3s ease;
}

.inputBox input:focus {
    border-color: #007bff;
}

.pop-btnBox{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
