* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  background-image: url("../images/bg_bw.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
}

.container {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 44px;
  text-align: center;
  width: min(460px, 92vw);
}

.subtitle {
  font-size: 24pt;
  color: #1f2630;
  margin: 14px 0 22px;
  letter-spacing: 0;
}

.custom_input {
  align-items: center;
  position: relative;
  display: block;
  margin: auto;
  width: 82%;
}

.input {
  font-size: 18px;
  padding: 10px 12px;
  margin: 6px 0;
  width: 100%;
  outline: none;
  background: #ffffff;
  color: #000000;
  border: 1px solid #c4d1eb;
  border-radius: 6px;
  box-shadow: 3px 3px 2px 0 #e2e2e2;
  transition: 0.3s ease;
}

.input:focus {
  background: #f2f2f2;
  border: 1px solid #b6becc;
}

.input::placeholder {
  color: #777d86;
}

.appLogo {
  width: 70%;
  display: block;
  margin: auto;
}

.inputSubmit {
  border: 1px solid #2f7f8f;
  border-radius: 6px;
  font-size: 18px;
  margin-top: 14px;
  padding: 9px 16px;
  width: 60%;
  background-image: linear-gradient(to right, #2f7f8f, #6237a0);
  color: white;
  cursor: pointer;
}

.notification {
  color: #b3261e;
  font-size: 14pt;
  font-weight: bold;
  margin-top: 18px;
}
