@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* max-width: 100%;  */
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 400;
}

.montserrat-medium {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}




:root {
    --primary-Bg: rgb(255, 255, 255);
    --primary-color: rgb(6, 26, 33);
    --max-width: 1440px;
}



body {
    background-color: var(--primary-Bg);
    color: var(--primary-color);
    overflow-x: hidden;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /* align-items: center; */
    /* justify-content: center; */
    position: relative;
}


.Hero {
    width: 50%;
    height: 100%;
    display: none;
}

.Hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}


.Hero-sub {
    padding-top: 50px;
    width: 50%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.Hero-sub::-webkit-scrollbar {
    display: none;
}



.Hero-sub1{
    text-align: center;
}

.form-container {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.title {
    font-family: 'Gilroy';
    font-size: 32px ;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.408px;
}

.begin {
    color: var(--Color-Styles-Grey-grey-600, #5D6679);
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.408px;
}


.option {
    position: relative;
    margin-bottom: 15px;
    border-radius: 5px;
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.408px;
    cursor: pointer;
    border: 1px solid rgb(208, 211, 217) ;
    padding: 16px 32px;
    align-self: stretch;
    transition: all .3s ease;
}

.option input[type="radio"] {
    opacity: 0;
    width:0;
    height: 0;
}

.option label {
    position: relative; /* we made this container relative because we need to create a mock radio button in the label and use absolute to position the mock radio button */
    padding: 2rem;
    margin: 0;
}

.option label::before { /* Here we use "::before" to insert a mimic of a radio button before the label text so we can fully customize the radio button */
    content : "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgb(23, 86, 104);
    background-color: white;
    transition: all .3s ease;
}

.option label::after {
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color:rgb(23, 86, 104) ;
    transition: all .3s ease;
}

.option input[type="radio"]:checked + label::before {
    border-color: rgb(23, 86, 104);
}

.option input[type="radio"]:checked + label::after {
    background-color: rgb(23, 86, 104);
    transform: translateY(-50%) scale(1);
}

.option input[type="radio"]:checked ~ label {
    color : black; /* Here you can change the text color when radio button is clicked if you want to*/
}

.option:hover {
    border-color: #ccc;
}

.option.selected {
    border-color: rgb(23, 86, 104);
    background-color: rgb(232, 238, 240);
}

.option.selected label {
    color: #ccc;
}

.start-button {
    color: rgba(152, 159, 173);
    background-color: rgb(232, 238, 240);
    border-radius: 40px;
    padding: 12px 28px;
    border: none;
    font-family: 'Gilroy';
    font-size: 16px ;
    font-weight: 400;
    letter-spacing: -0.408px;
    line-height: normal;
    width: 100%;
    cursor: pointer;
}



/*Media queries*/

@media (min-width: 320px) {
    .Hero-sub {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 500px) {
  .form-container {
    width: 100%;
  }
}


@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }
    .begin {
        font-size: 14px;
    }
    .form-container {
        width: 70%;
    }

    .Hero-sub {
        /* justify-content: center; */
    }
}

@media (min-width: 1024px) {

    .Hero,
    .Hero img {
        display: block;
        width: 100%;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .form-container {
        width: 90% ;
    }
}

@media (min-width: 1441px) {
  .form-container {
    width: 40% ;
  }
}



