html, body {
	background: transparent!;
	 margin: 10px;
  font-family: arial, sans-serif;
}

*{
  padding:0px;
  margin:0px;
  box-sizing:border-box;
}

form, .wrap {
	float: left;
	width: 94%;
	padding: 1rem 3%;
	background: #D51B20;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.8);
    -webkit-box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 80%);
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 80%);
}








h1 {
	color: #fff;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    line-height: 35px;
    text-transform: capitalize;
    text-align: left;
    padding: 10px 0 20px 0;
}

h2 {
	color: #fff;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    padding-bottom: 10px;
}

h3 {
	color: #fff;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
    padding-bottom: 20px;
}


/*==== form Div====  */
.form{
  float: left;
  height:50px;
  position:relative;
  overflow:hidden;
  margin : 0 1% 10px 0;
}
.form.form5{
  width:19%;
}
.form.form4{
  width:24%;
}
.form.form3{
  width:32.33333333%;
}




.form input{
  width:100%;
  height:100%;
  color:#000;
  padding-top:25px;
  border:none;
  outline:none;
  font-size: 15px;
  background: #D51B20;
}
.form label {
  position: absolute;
  width:100%;
  height:100%;
  bottom:0px;
  left:0%;
  pointer-events:none;
  border-bottom:1px solid black;
  
}
.form label::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-bottom:3px solid #000;
  bottom:-1px;
  left:0px;
  transform:translateX(-100%);
  transition:all 0.3s ease;
}
.content-name{
  position:absolute;
  bottom:5px;
  left:0px;
  transition:all .3s ease;
}
.content-name.select{
	padding-top: 9px;
font-size: 12px;
  bottom:auto;
color: #FFF;
}



.form input:focus + .label-name .content-name ,
.form input:valid+ .label-name .content-name{
  transform:translateY(-150%);
  font-size:12px;
  color:#FFF;
}
.form input:focus+ .label-name::after, 
.form input:valid+ .label-name::after {
  transform:translateX(0%);
   
}


select{
    border: none;
    background: #D51B20;
    outline:none;
    margin: 26px 0 0 0;
    color:  rgba(0, 0, 0, 1);
    padding:0 0 6px 0;
    font-size: 15px;
    width:100%;
}

button, .sendbtn{
    color:#ffffff;
    background-color: #4caf50;
    height:40px;
    width:25%;
    margin-top:15px;
    cursor: pointer;
    border:none;
    border-radius:2%;
    outline:none;
    text-align:center;
    font-size:16px;
    text-decoration:none;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
}
button:hover, button.sendbtn:hover{
    background-color:#333333;
}

option {
background: #ffffff;
	}

	P {
float: left;
width: 100%;
padding: 20px 0;
		color: #ffffff;
		font-size: 9px;
		line-height: 11px !important;
	}


