.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    text-align: center;
    color: #333;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group button,
.form-group input,
.form-group textarea {
    /* width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    border-radius: 50px; */
}
.form-group textarea {
    resize: vertical;
}
.form-group input[type="radio"] {
    width: auto;
    margin-right: 5px;
}
.form-group span {
    margin-right: 20px;
}
.form-group button {
    /* background-color: #03291E;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    border: none;
    display: inline-block;
    width: max-content;
    padding: 15px 25px; */
}
.form-group button:hover {
    /* background: #002AF9; */
}
.hidden {
    display: none;
}
#response-message {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Keep it on top */
}

/* Spinner animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1); /* Light gray border */
    border-top: 5px solid #002AF9; /* Blue border for the spinning effect */
    border-radius: 50%; /* Makes it round */
    animation: spin 1s linear infinite; /* Rotate continuously */
}

/* Keyframes for the spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg); /* Start at 0 degrees */
    }
    100% {
        transform: rotate(360deg); /* Complete a full circle */
    }
}

.tbt_score_main h3 {
    text-align: center;
    line-height: 1;
}
.tbt_score_main {
    box-shadow: inherit;
}
.tbt_score_main h4 {
    margin-bottom: 30px;
    text-align: center;
}
.score-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #002af9;
}
.score-container h5 {
    font-size: 24px;
}
.score-box {
    border: 2px solid #002af9;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: #fff;
    min-width: 100px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 128, 0, 0.2);
    font-size: 14px;
}
.tbt-score-title {
    width: 100%;
    text-align: center;
}