body {
  padding: 0px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  background-color: #edeef0;
  display: block;
  margin: 0px;
}

.header {
  text-align: center;
}

.header_title {
  color: #004EA0;
  font-size: 24px;
  text-align: center;
  margin: 0;
}
.submit {
  margin: 0;
}

.form-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  background: #fff;
  min-width: 290px;
  width: 30vw;
  max-width: 445px;
  padding: 25px 2.5%;
  box-shadow: 1px 1px 7px rgba(0, 78, 160, 0.6);
  border-radius: 5px;
  display: grid;
  grid-gap: 20px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
	.form-1 {
		height: 250px;
		grid-gap: 10px;
		padding: 10px 5%;
	}
	.form-1 input {
		height: 40px;
		width: 90%;
	}
}

.form-1 .field {
  position: relative; 
  margin: 0;
  height: 50px;
}
.form-1 .field i {
    position: absolute;
	top: 0;
    right: 0;
    color: #1A73E9;
    background: linear-gradient(180.81deg, #3840FF 0.7%, rgba(255, 255, 255, 0) 158.01%),
        linear-gradient(0deg, #6DC2FF, #6DC2FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 40px;
    height: 50px;
    font-size: 24px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-1 input {
  border: none;
  border-bottom: 1px solid #aaa;
  height: 50px;
  padding: 0 10px;
  width: 95%;
  font-size: 18px;
  background: none !important;
  box-shadow: none !important;
  margin: 0;
}

.form-1 input:-webkit-autofill,
.form-1 input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

.form-1 input:hover {
  border-color: #4967a3;
}

.form-1 input:focus {
  color: #4967a3;
  outline: none;
  border-bottom: 1px solid #aaa;
}
.form-1  p {
	margin: 0;
	text-align: right;
}



button {
  border: none;
  background: linear-gradient(270deg, #1a73e9 0%, #6c92f4 100%);
  border-radius: 4px;
  height: 50px;
  padding: 0 10px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  margin-top: 10px;
}

.form-1 button:hover {
  background: linear-gradient(218.57deg, #0038FF 0%, #5CE2FF 93.91%);
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}