body{
margin: 0;
padding: 0;
font-family: sans-serif;
background-image: url('img/eggman_pics/images_french\ omlette1.jpg');
/* background-color:#E6F2F1; */
height: 100%;
background-size: cover;
background-repeat: no-repeat;
}

.CountryCode{
  width: 40px;
}

.box{
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow-y: visible;
}

.box h2{
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

.box .inputBox
{
  position: relative;
}

.box .inputBox input{
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: none; 
  border-bottom: 2px solid #FE5D37;
  border-radius: 0px;
  outline: none;
  background: transparent;
}

.box .inputBox label{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: white;
  pointer-events: none;
  transition: .5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label{
  top: -18px;
  left: 0;
  color: white;
  font-size: 12px;
}

.box input[type="submit"]
{
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  background-color: #FE5D37;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
}

.box p{
  color: white;
}

.box a{
  color: #FE5D37;
  text-decoration: none;
}

@media only screen and (max-width: 980px)
{
  .box{
    width: 100%;
  }

  body{
    width: 100%;
    height: 100vh;
    background-image: url('img/eggman_pics/mobile_resolution/3.jpg'); /*This is the vertical mobile background*/
    /*background-color: rgba(0,201 ,228, 0.5);*/
    background-size: cover;
    background-repeat: no-repeat;
  }
}