*{ box-sizing: border-box; }

body{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(src/Page3_Backgound.jpg);
  /*background: linear-gradient(to bottom right, #274B74 0%, #02abf0 50%, #ee001a 100%);*/
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.container{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type=text]{
  position: relative;
  padding: 15px 40px 15px 20px;
  width: 20px;
  color: #525252;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(to right, #FFFFFF 0%,#464747 #F9F9F9 100%);
  transition: width 0.4s ease;
  outline: none;
  
  &:focus{ width: 550px; }
}

i{
  position: relative;
  left: -37px;
  color: #02abf0;
}

.social{
  position: absolute;
  right: 35px;
  bottom: 35px;
  
  img{
    display: block;
    width: 200px;
  }
}