/* Free Class */
.soon-container {
    height: 50vh !important;
}

.soon-container h1 {
    text-align: center;
    margin-top: 6%;
    font-size: 3.5rem;
}

.soon-container div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn {
    transition: all 0.3s ease-in-out;
    font-family: "Dosis", sans-serif;
}

.btn a {
    color: #000000;
    font-weight: bold;
    cursor: pointer;
}

.btn {
    width: 180px;
    height: 60px;
    border-radius: 50px;
    background-image: linear-gradient(135deg, var(--color3) 0%, var(--color3) 100%);
    box-shadow: 0 20px 30px -6px rgba(114, 169, 143, 0.5);
    outline: none;
    border: none;
    font-size: 24px;
    margin: 4%;
    color: white;
}

.btn:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.btn:active {
    opacity: 0.5;
}

@media only screen and (max-device-width: 480px) {
    .soon-container {
        height: 30vh !important;
        margin-top: 16vh;
    }

    .soon-container h1 {
        font-size: 3rem;
    }

    .btn {
        font-size: 1rem;
        width: 120px;
        height: 40px;
    }

}

@media (min-width: 481px) and (max-width: 1024px) {
    .soon-container {
        height: 55vh !important;
        margin-top: 16vh;
    }

    .soon-container h1 {
        font-size: 5rem;
    }
}

/* 
#free-class-container{
display: flex;
width: 100%;
height: 80vh;
border: 2px solid red;
}
#free-class-container .sidebar{
width: 20%;padding-top: 8%;
border: 2px solid blue;
display: flex;
align-items: center;
flex-direction: column;
background-color: #171717;
}
#free-class-container .sidebar button{
    width: 100%;
    padding: 0.7rem 0px;
    background-color: #171717;
    border: none;
    font-weight: 700;
    color: white;
    border-bottom: 1px solid #2e2e2e;
    margin: 2%;
}
.activated{
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    background-color: #85f00c !important;
    color: #000000 !important;
}
#free-class-container .free-class{
    width: 80%;
    border: 2px solid green;
}

#online-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 50%;
    margin: auto;
}

 .online-form-label {
    font-weight: bold;
    margin-top: 0px;
    display: block;
}

#online-form input[type="text"],
#online-form input[type="email"],
#online-form input[type="date"],#course-name,#country
 {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0px 0px 0px 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#online-form input[type="number"]{
    padding: 12px;
    margin: 0px 0px 0px 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    width: 76%;
}
#country-code{
    width: 100%;
    padding: 10px;
    margin: 0px 0px 0px 0px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}
.flag-container{
    border: 1px solid #ccc;
    display: flex;    border-radius: 4px;
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
    align-items: center;
    justify-content: center;
}
#online-form button {
    background-color: #2e2e2e;
    color: white;
    padding: 10px 15px;
    margin-top: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#online-form button:hover {
    background-color: #85f00c;
    color: #171717;
}

#online-form input[type="radio"] {
    margin-right: 10px;
}

#online-form .contact-container {
    display: flex;
    align-items: center;
}

#flag {
    margin-right: 10px;
} */