/* contact form on contact us page*/

.contactForm{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 0 3%;
    background-color: #000;
    color: #fff;
    font-size: 16px;
}

.section01AForm{
    width: 90%;
    margin-left: 2%;
    margin-top: 4%;
    border-radius: 10px;
    border: 3px solid #04b4ec;
    background-color: #000;
}

.formTitle{
    background-color: #04b4ec;
    width: 100%;
}

.name {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 5%;
}

.firstNameCont, .lastnameCont{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.lastNameCont{
    align-items: start;
}

.contactForm input{
    width: 100%;
    height: 35px;
    border: 2px solid #04b4ec;
    background-color: #cfcfcf;
    border-radius: 10px;
    outline: none;
    margin: 2% 0;
}

.contactForm textarea{
    width: 98%;
    height: 35px;
    border: 2px solid #04b4ec;
    background-color: #cfcfcf;
    border-radius: 10px;
    height: 200px;
    padding: 1%;
    outline: none;
    margin: 2% 0;
}


.contactForm button{
    background-color: #04b4ec;
    font-family: verdana;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    border: none;
    padding: 1.5%;
    margin-top: 4%;
    margin-bottom: 7%;
    cursor: pointer;
    border-radius: 10px;
}

.contactForm button:hover{
    color: #04b4ec;
    background-color: #000;
}


.contactForm span{
    color: #ff0000;
}

#firstName{
    width:80%;
}

.contactForm p{
    color: #ff0000;
    font-size: 14px;
    font-weight: normal;

}

.spinner {
  border: 4px dashed rgba(0, 0, 0, 0.1);
  border-color: #7CFC00;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contactForm .submitting{
    display:none;
    color:#7CFC00;
    align-items:center;
}

.submitting p{
    color:#7CFC00 !important;
    margin-left:2%;
}

/* form for display boxes*/

.contactModal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-size: 18px;
}

#contactFormDialog{
    background-color: #000;
    width: 50%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #04b4ec;
}

#modalClose{
    height: 50px;
    width: 50px;
    position: absolute;
    top: 1%;
    right: 1%;
}

.contactModal input{
    width: 100%;
    height: 25px;
    border: 2px solid #04b4ec;
    background-color: #cfcfcf;
    border-radius: 10px;
    outline: none;
    margin: 2% 0;
    text-align: start;
    caret-color: #000;
}

.contactModal .submitting{
    display:none;
    color:#7CFC00;
    align-items:center;
}

.contactModal .name {
    width: 100%;
    display: flex;
    align-items: center;
}

.contactModal .firstNameCont {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contactModal .lastnameCont{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contactModal .lastNameCont input{
  width: 100%;
}

.contactModal textarea{
    width: 98%;
    height: 35px;
    border: 2px solid #04b4ec;
    background-color: #cfcfcf;
    border-radius: 10px;
    height: 200px;
    padding: 1%;
    outline: none;
    margin: 2% 0;
}

.contactModal label{
    width: 100%;
    text-align: start;
}

.contactForm label{
    width: 100%;
    text-align: start;
}


.contactModal button{
    background-color: #04b4ec;
    font-family: verdana;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    border: none;
    padding: 1.5%;
    margin-top: 4%;
    margin-bottom: 7%;
    cursor: pointer;
}

.contactModal button:hover{
    color: #04b4ec;
    background-color: #000;
}


.contactModal span{
    color: #ff0000;
}

#firstName{
    width:80%;
}

.contactModal p{
    color: #ff0000;
    font-size: 14px;
    font-weight: normal;

}

.contactModal .contactButtonCont{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 991px){
    #contactFormDialog{
        width: 100%;
    }
}



