[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

body {
  background: #272125;
  font-family: 'Roboto', sans-serif;
  
}

form {
  position:relative;
  margin: 50px auto;
  width: 380px;
  height: auto;
}

button {
  width: 100%;
  border: 0px;
  background: #e74c3c;
  border-radius:4px;
  padding: 10px;
  color:white;
  font-size:22px;
}

input {
  border:0px;
  background: rgba(255,255,255,.2);
  display: block;
  margin: 8px 0 8px 0;
  width: 300px;  
  color:white;
  font-size:18px;
  height: 54px;
  outline:none;
	
  width: 100%;
  border-radius: 4px;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
}


input::-webkit-input-placeholder {
  color: white;
}

input:focus::-webkit-input-placeholder {
  color: #e74c3c;
}


input:focus {
  border-color: #e74c3c;
  background: rgba(255,255,255,.95);
  color: #e74c3c;
}

.inputWithIcon input {
  padding-right: 30px;
  padding-left: 15px;
}

.inputWithIcon {
  position: relative;
}

.inputIcon {
  position: absolute;
  right: 5px;
  top: 8px;
  padding: 9px 8px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIcon input:focus + .inputIcon {
  color: #e74c3c;
}

.inputWithIcon.inputIconBg i {
  background-color: #aaa;
  color: #fff;
  padding: 9px 4px;
  border-radius: 4px 0 0 4px;
}

.inputWithIcon.inputIconBg input:focus + .inputIcon {
  color: #fff;
  background-color: #e74c3c;
}