@font-face {
    font-family: "Montserrat-light";
    src: url(../fonts/static/Montserrat-Light.ttf);
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Montserrat-Medium";
    src: url(../fonts/static/Montserrat-Medium.ttf);
}
@font-face {
    font-family: "Montserrat-Bold";
    src: url(../fonts/static/Montserrat-Bold.ttf);
}
@font-face {
    font-family: "Montserrat-black";
    src: url(../fonts/static/Montserrat-black.ttf);
}
*{
    margin: 0px;
    padding: 0px;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #151c29;
    padding: 20px 0;
}
.headerDiv2{
    display: flex;
    justify-content: space-evenly;
    align-items: start;
}
.headerDiv2 a{
    text-decoration: none !important;
    color: white;
    font-size: 24px;
    font-family: "Montserrat";
    font-weight: 500;
    word-spacing: 5px;
    text-align: center;
}
.headerDiv2 p{
    text-decoration: none !important;
    color: white;
    font-size: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    word-spacing: 5px;
    text-align: center;
}
.headerDiv2 .active{
    border-bottom: 2px solid white !important;
}
.Form{
    margin-top: 4%;
}
.FormRow{
    display: flex;
    justify-content: center;
    align-items: center;
}
.FormDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.FormDiv h1{
    border: 1px solid black;
    padding: 20px 60px;
    border-radius: 10px;
    font-family: "Montserrat";
    font-size: 40px;
    font-weight: 600;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
}
.FormDiv a{
    margin: 80px 0;
    padding: 20px 0;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    max-width: 50%;
    width: 100%;
    border-radius: 10px;
    font-family: "Montserrat";
    font-size: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.75);
}
form{
    margin-top: 1%;
    width: 100%;
    max-width: 80%;
    padding: 20px 10px;
}
form label{
    margin-top: 30px;
    font-size: 28px;
    font-weight: 500;
    font-family: "Montserrat";
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}
form label input{
    width: 100%;
    height: 80px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-top: 10px;
    background-color: #d9d9d9;
    padding: 5px 20px;
}
input::placeholder{
    font-size: 20px;
    font-family: "Montserrat";
    font-weight: 200;
    color: black;
}
form .phone{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}
form .phone input{
    width: 100%;
    height: 80px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-top: 10px;
    background-color: #d9d9d9;
    padding: 5px 20px;
}
.checkbox-group{
    margin: 30px 0;
}
.checkbox-groupInner {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.circular-checkbox {
    display: inline;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 10px;
    width: 30%;
}

.circular-checkbox input[type="checkbox"] {
    display: none;
}

.circular-checkbox span {
    width: 45px;
    height: 45px;
    background-color: #d9d9d9;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
}

.circular-checkbox input[type="checkbox"]:checked + span {
    background-color: #556EA4;
}