@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500&display=swap');
body{
    font-family: 'Lora', serif !important;
}
.first-section{
    background-image: url("../img/bg.jpg");
    color: white;
    font-size: 30px;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.first-section > .overlay > p{
    margin-top: 125px;
    font-family: 'Lora', serif !important;

}
.first-section > .overlay > p > a:hover{
    color: darkblue;
}
.white{
    background-color: white;
    margin-top: -70px !important;
    font-size: 19px;
    border-radius: 5px;
}
.container{
    width: 70%;
    margin-left:  auto;
}
form > p > a {
 color: darkblue !important;
}
.form {
	padding: 30px 40px;	
}

.form-control {
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
    border: unset;
}

.form-control label {
	display: inline-block;
	margin-bottom: 5px;
}

.form-control input {
	border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
	font-family: inherit;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}
.form-control select {
	border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
	font-family: inherit;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}
.inputt:focus {
	outline: 0;
	border-color: #777;
}
.form-control.success input {
	border-color: #2ecc71;
}

.form-control.error input {
	border-color: #e74c3c;
}

.form-control i {
    font-size: 30px;

	visibility: hidden;
	position: absolute;
	    top: 43px;
    right: 20px;
}

.form-control.success i.fa-check-circle {
	color: #2ecc71;
	visibility: visible;
}

.form-control.error i.fa-exclamation-circle {
	color: #e74c3c;
	visibility: visible;
}

.form-control small {
	color: #e74c3c;
	position: absolute;
	bottom: 0;
	left: 0;
	visibility: hidden;
}

.form-control.error small {
	visibility: visible;
}
@media only screen and (max-width: 660px){
  .white{
      width: 90%;
      margin-top: -30px !important;
  }
  .form {
    padding: 30px 0;
}
}
@media only screen and (max-width: 500px){
    .white{
        width: 100%;
    }
  }
