* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.background {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.loginContainer {
  padding: 15px;
  max-width: 320px;
  height: 470px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.textContainer {
  display: flex;
  width: 100%;
  height: 700px;
  align-items: center;
  text-align: center;
}

.textContainer > h1 {
  font-size: 1.8rem;
}

.inputArea {
  flex-grow: 1;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}

.inputContainer {
  margin: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
}

.inputContainer:nth-of-type(3) {
  display: flex;
  height: 40px;
  align-items: center;
  flex-direction: row;
}

.inputContainer > input {
  outline: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  padding: 5px 0 5px 40px;
  border: none;
  background: #ddd;
  border-radius: 5px;
  height: 40px;
}

.inputContainer > input[type="text"] {
  background-blend-mode: overlay;
  background-image: url(../img/user.svg);
  background-position: 5px 5px;
  background-size: 20px;
  background-repeat: no-repeat;
}

.inputContainer > input[type="password"] {
  background-blend-mode: overlay;
  background-image: url(../img/padlock.svg);
  background-position: 7px 3px;
  background-size: 15px;
  background-repeat: no-repeat;
}

.inputContainer > input[type="checkbox"] {
  box-shadow: none;
  width: 15px;
}

.inputContainer > input[type="button"] {
  background: #24a0ed;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.inputContainer > input[type="button"]:hover {
  transition: 0.2s ease-in-out;
  background: #157ec0;
  cursor: pointer;
}

.inputContainer > label {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.inputContainer:nth-of-type(3) > label {
  margin: 0 0 0 5px;
}
