@font-face {
    font-family: 'JazeeraBold';
    src: url('../fonts/jazeera-bold.woff2') format('woff2'),
    url('../fonts/jazeera-bold.ttf') format('truetype') !important;    
    font-weight: normal !important;
    font-style: normal !important;
}

*{
    font-family: 'JazeeraBold' !important;
    font-size: 1rem !important;
}
body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    direction: rtl;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#logoContainer {
    position: absolute;
    top: 3.125vh;
    right: 3.125vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18.75vh;
    height: 18.75vh;
    z-index: 4;
}

#logo {
    max-width: 26.25vh;
    z-index: 5;
}

#logoContainer::before,
#logoContainer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0.625vh 1.25vh rgba(0, 0, 0, 0.3);
}

#logoContainer::before {
    width: 50vh;
    height: 50vh;
    background-color: #e4e3e3;
    z-index: 1;
}

#logoContainer::after {
    width: 37.5vh;
    height: 37.5vh;
    background-color: #d6d6d6;
    z-index: 2;
}

#logoContainer .inner-circle {
    position: absolute;
    width: 25vh;
    height: 25vh;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0.625vh 1.25vh rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.card {
    background-color: #fff;
    border-radius: 1vh;
    box-shadow: 0 0.75vh 1.875vh rgba(0, 0, 0, 0.1);
    padding: 3.75vh;
    margin: 0 auto;
    max-width: 62.5vh;
    text-align: center;
    position: relative;
    z-index: 10000;
    box-sizing: border-box;
}

.card .header-container {
    background-color: #594c44;
    color: white;
    padding: 1.25vh;
    border-radius: 1vh 1vh 0 0;
    position: absolute;
    top: -3.75vh;
    left: 0;
    right: 0;
    text-align: center;

    box-shadow: 0 0.5vh 1.25vh rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.875vh;
    align-items: center;
    margin-top: 6.25vh;
    width: 100%;
}

label {
    width: 100%;
    text-align: right;
    color: #333;

}

input[type="text"],
input[type="tel"] {
    padding: 1.25vh;
    border: 0.25vh solid #ccc;
    border-radius: 0.5vh;
    width: 50vh;
    box-sizing: border-box;
    text-align: right;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #594c44;
    outline: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2vh;
    overflow: hidden;
}

button {
    background-color: #594c44;
    color: white;
    padding: 1.25vh 2.5vh;
    border: none;
    border-radius: 0.5vh;
    cursor: pointer;
    transition: background-color 0.3s;
    flex: 0 0 auto;
}

button:hover {
    background-color: #635b56;
}

#errorMessage {
    color: red;
    margin-top: 1.25vh;
    text-align: center;
}

#userCounter {
    margin-top: 2.5vh;
    color: #333;
}

footer {
    bottom: 0;
    position: absolute;
}

.age-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-group input[type="radio"] {
    display: none;
}

.age-label {
    padding: 1.25vh 2.5vh;
    margin: 0vh 1vh 0vh 0vh;
    border: 0.25vh solid #ccc;
    border-radius: 0.5vh;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -ms-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
}

.age-group input[type="radio"]:checked + .age-label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.age-label:hover {
    background-color: #007bff;
    color: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 0vh;
    position: relative;
    top: -5vh;
    z-index: 5;
}

.tab-button {
    background-color: #594c44;
    border: none;
    padding: 1.875vh 5vh;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0.5vh 0.5vh 0 0;
    margin: 1vh;
}

.tab-button:hover,
.tab-button.active {
    background-color: #635b56;
    font-weight: bold;
    outline: .2vh solid black;

}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
#belong strong{
    font-size: 1vh !important;
    z-index: -1 !important;
}