#otp-fields {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Container for the form or div with the loader */
.otp-login-container{
    position: relative;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 5px;
}

/* Style for loading spinner */
#loading-spinner {
    border: 4px solid #f3f3f3; /* Light gray background */
    border-top: 4px solid #3498db; /* Blue spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the spinner inside the container */
    z-index: 9999; /* Make sure the spinner is on top of content */
}

/* Animation for the spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#timer {
    display: inline; /* Ensure timer is visible */
    color: red; /* Optional: Add color for better visibility */
    font-size: 14px;
    color: #333;
    margin-left: 10px;
}