.invalid-feedback {
    font-size: small !important;
    margin-top: 2.1rem !important;
}

.otp-container input {
    width: 40px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    margin: 5px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ddd; /* Default border color */
    border-radius: 10px;
}

.otp-container input:focus {
    border-color: blue; /* Color when input is focused */
    outline: none;
}

.card-body {
    padding-top: 50px; /* Adjust the padding as needed */
    padding-bottom: 50px; /* Adjust the padding as needed */
    height: auto; /* Ensure the height adjusts based on content */
    display: flex;
    flex-direction: column;
    justify-content: center; /* This centers the content vertically */
}

.section {
    min-height: 100vh; /* Adjust this if needed to 'auto' or a specific height */
}

.timer div{
    display: inline;
}

.jst-hours {
    display: none !important;
}

.shimmer {
    background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.2) 50%,
    rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
