/* contact form on contact us page*/

.contact_form_container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 0 3%;
    background-color: #000;
    color: #000;
    font-size: 16px;
    border: 3px solid #ff3131;
    border-radius: 10px;
    width: 94%;
}

.contact_form{
    width: 96%;
    border-radius: 10px;
    border: 3px solid #ff3131;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0 2%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom: 0;
}

.contact_form_container .title{
    background-color: #ff3131;
    width: 98%;
    font-size: 26px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 2% 1%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.contact_form input{
    width: 98%;
    height: 27px;
    border: 2px solid #ff3131;
    background-color: #cfcfcf;
    border-radius: 3px;
    outline: none;
    margin: 0;
    padding: 0 1%;
}

.name {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: 0;
    padding: 0;
}

.first_name_container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 46%;
    margin: 0;
    padding: 0;
}

.last_name_container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    width: 46%;
    margin: 0;
    padding: 0;
}

.last_name_container input, .last_name_container input{
    width: 100%;
}

.last_name_container label{
    width: 100%;
}

.contact_form label{
    margin: 0;
    margin-top: 2.5%;
}

.contact_form textarea{
    width: 98%;
    height: 35px;
    border: 2px solid #ff3131;
    background-color: #cfcfcf;
    border-radius: 3px;
    height: 200px;
    padding: 1%;
    outline: none;
}


.contact_form button{
    background-color: #ff3131;
    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;
}

.contact_form button:hover{
    color: #ff3131;
    background-color: #000;
}


.contact_form span{
    color: #ff0000;
}

#contact_form{
    width:80%;
}

.contact_form 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);
  }
}

.contact_form .submitting{
    display:none;
    color:#7CFC00;
    align-items:center;
}

.submitting p{
    color:#7CFC00 !important;
    margin-left:2%;
}


