.dob-select {
    display: flex;
    gap: 10px;
    /* Space between each dropdown */
}

.dob-select select {
    flex: 1;
}

.mobile-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-inline .input-text {
    flex-grow: 1;
    width: auto;
    /* Ensure it takes the available space */
}

.mobile-inline .action {
    flex-shrink: 0;
    white-space: nowrap;
    /* Prevent the button text from wrapping */
}

.expiry {
    margin-top: 18px;
}

.group-account {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #e7f1f8;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: none;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mage-success {
    color: green;
    font-weight: bold;
}

.tooltip-icon {
    position: relative;
    cursor: pointer;
}

.tooltip-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 25%;
}

.tooltip-icon:hover .tooltip-content {
    display: block;
}

.field-reset-password {
    padding-bottom: 25px;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .tooltip-content {
        width: 50%;
        /* Adjust width for smaller screens */
        padding: 8px;
        /* Adjust padding for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .tooltip-content {
        width: 75%;
        /* Further adjust width for very small screens */
        padding: 6px;
        /* Further adjust padding for very small screens */
    }
}

.ageselector-wrapper {
    text-align: center;
}

.ageselector-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ageselector-wrapper .text-center {
    font-size: 1.2rem;
    margin: 20px 0;
}

.ageselector-wrapper h2 {
    font-size: 1.8rem;
    margin: 20px 0;
    font-weight: bold;
}

.ageselector-wrapper .new {
    font-size: 1.8rem;
    margin: 20px 0;
    font-weight: bold;
}