body {
  background-color: #e25869;
  color: #010100;
}

* {
  font-family: "Rubik" sans-serif;
}

.container {
  display: flex;
  align-items: center;
}

.container form {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8%;
  width: 500px;
  border-radius: 5px;
}

.fields {
  margin-bottom: 10px 40px 40px 40px;
}

.fields h1 {
  margin-bottom: 30px;
  font-weight: 500%;
  padding-left: 20px;
}

.input-container {
  margin-bottom: 20px;
  padding-left: 20px;
}

input {
  width: 100%;
  font-size: 16px;
  padding: 10px 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-color: #757575;
  border-width: 1px;
}

.forgot-password {
  text-align: center;
  padding-top: 10px;
}

.forgot-password a {
  color: #757475;
  font-size: 15px;
  text-decoration: underline;
  text-transform: uppercase;
}

.buttons {
  display: flex;
  margin-top: 10px;
}

.buttons button {
  width: 100%;
  border: 0;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px;
}

.bottons button:first-child {
  color: #757475;
  border-bottom-left-radius: 5px;
}

.buttons button:last-child {
  background-color: #2c3d55;
  color: #fff;
  border-bottom-right-radius: 5px;
}

cursor {
  cursor: pointer;
}


/* Remove colored border on focus */
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

