@import url("https://fonts.googleapis.com/css2?family=Mulish&display=swap");
* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Mulish", sans-serif;
  background: linear-gradient(
    to bottom right,
    #eb2931,
    #f24952 18%,
    #f35747 48%,
    #bc473a 59%,
    #202b49 100%
  );
}
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo {
  /* @TO-DO: Remove fixed size*/
  width: 255px;
  height: 38px;
  position: absolute;
  top: 50px;
  left: 0;
  background: #ffffff;
}

.logo img {
  padding-left: 23px;
  padding-top: 7px;
  width: 70px;
}

.form {
  width: 100%;
  max-width: 680px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.form h3 {
  font-family: "Mulish", sans-serif;
  background-color: #ffffff;
  padding: 15px 120px;
  border-radius: 10px;
  text-align: center;
}

form {
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 35px;
  flex-direction: column;
  padding: 4rem;
}

form button, .input-button {
  align-self: center;
  width: 552px;
  height: 70px;
  margin-top: 30px;
  border-radius: 10px;
  background-color: #302c44;
  color: white;
  outline: none;
  border-style: none;
  cursor: pointer;
  font-size: 18px;
}

.input-field {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1.5rem;
}
.input-field label {
  line-height: 3rem;
}
.input-field input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #c5c7cd;
  border-radius: 10px;
  display: inline-block;
  padding: 1.5rem;
  font-size: 1rem;
}

.input-wrapper img {
  position: absolute;
  top: calc(50% + 1rem);
  right: 25px;
}
.input-wrapper {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
