body {
    font-family: Arial, sans-serif;
    margin-top: 80px;
    padding: 0;
}
  
.container {
    max-width: 430px;
    margin: 40px auto;
    padding: 40px 40px 32px 40px;
    background-color: #fff;
    border-radius: 3px;
    border: 2px solid #cecbcb;
}

h2{
    text-align: center;
    margin: 0 auto 40px auto;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 32px;
    text-decoration: underline;
    color: rgb(240, 68, 68);
}

.input-group {
    margin-bottom: 5px;
}

label {
    font-weight: 600;
    font-size: 15px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
}

select {
    width: 101%;
    padding: 10px;
}

.tooltip1 {
    position: relative;
    display: inline-block;
}
  
.question-mark {
    display: inline-block;
    font-size: 12px;
    width: 11px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    color: rgb(142, 141, 141);
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(142, 141, 141);
}
  
.tooltiptext {
    visibility: hidden;
    font-size: 10px;
    height: 60px;
    width: 90px;
    background-color: rgb(105, 104, 104);
    color: #fff;
    border-radius: 3px;
    padding: 5px 6px;
    position: absolute;
    z-index: 1;
    bottom: 23px;
    left: 44px;
    margin-left: -51px;
}

.tooltip1 .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -42px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(105, 104, 104) transparent transparent transparent;
}
  
.tooltip1:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#submit{
    width: 100%;
    padding: 10px;
    margin: 35px 0px 0px 0px;
    background-color: #009dff;
    border: solid 1px #009dff;
    color: white;
    border-radius: 2px;
}

#submit:hover {
    background-color: #018ce3;
    cursor: pointer;
}

.error-icon {
    display: none;
    position: relative;
    cursor: pointer;
    top: -29px;
    left: 400px;
    color: rgb(142, 141, 141);
    border: 1px solid rgb(142, 141, 141);
    height: 17px;
    width: 17px;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
}

.tooltiptext2 {
    visibility: hidden;
    width: 125px;
    font-size: 10px;
    background-color: rgb(105, 104, 104);
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 7px 4px;
    position: absolute;
    z-index: 1;
    top: -61px;
    left: 393px;
}

.tooltip1 .tooltiptext2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -55px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(105, 104, 104) transparent transparent transparent;
}
  
.tooltip1:hover .tooltiptext2 {
    visibility: visible;
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin: 140px auto;
    padding: 5px;
    border: 2px solid #9a9999;
    border-radius: 3px;
    max-width: 42%;
    height: 370px;
}

.modal-content h1 {
    text-align: center;
    margin: 5px;
    font-weight: 700;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.modal-content p {
    text-align: center;
    margin: 3px;
    font-weight: 600;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
}

.modal-content h4 {
    text-align: center;
    margin: 3px;
    font-weight: 600;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
}

.close {
    color: white;
    background-color: #009dff;
    border: solid 1px #009dff;
    border-radius: 3px;
    margin-top: 60px;
    padding: 9px 11px;
    font-size: 15px;
    font-weight:400;
}

.close:hover {
    background-color: #018ce3;
    text-decoration: none;
    cursor: pointer;
}
  