* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", system-ui;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

#login-container {
  display: flex;
}

#login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  flex: 4;
  background-color: #FF000F;
  
}

#form-wrapper {
  margin: auto 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-vertical-white {
  max-width: 300px;
}

#login-image {
  height: 100vh;
  flex: 2;
}

#form-wrapper > h1 {
  margin-top: 60px;

  font-size: 32px;
  color: #FFF;
  font-weight: 500;
}

#login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.input-wrapper {
  width: 300px;
  max-width: 400px;
}

.input-wrapper > input {
  width: 100%;

  border: none;
  border-radius: 4px;
  padding: 12px 10px;
 
  outline-color: #FF000F;
}

.input-wrapper > input::placeholder {
  color: #FF000F;
  font-weight: 500;
  font-size: 14px;
}

#login-form > a {
  color: #FFF;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}

#login-button {
  margin-top: 20px;

  cursor: pointer;
  border: none;
  border-radius: 36px;
  padding: 12px 30px;

  background-color: #FFF;

  font-size: 14px;
  font-weight: 700;
  color: #FF000F;
}

#help-email {
  font-size: 14px;
  color: #FFF;
  font-weight: 400;
}

#help-email > span {
  font-weight: 700;
}

