body {
  padding: 0;
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  background-image: white !important;
}

.loginContainer {
  display: flex;
  align-items: center;
  height: calc(100vh);
}

.loginBackButton {
  position: absolute;
  top: 40px;
  left: 50px;
  cursor: pointer;

  display: flex;
  align-items: center;
}

.loginBackButton span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.006em;
  color: #858585;
  margin-left: 12px;
}

.loginLeft {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/images/loginBackground.png');
  background-size: cover;
}

.loginRight {
  height: 100%;
  width: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loginRight label {
  display: none;
}

.loginRight .checkbox {
  display: block;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.006em;
  color: #1E1E1E;
  margin-bottom: 0;
  padding: 0;
}

.loginRight .checkbox input {
  width: auto;
  height: auto;
  margin-bottom: 0;
  padding: 0;
}

.loginRight input {
  padding: 6px 12px;
  width: 380px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 5px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.006em;
  color: #AAAAAA;
  margin-bottom: 25px;
}

.loginRight input:focus {
  outline: none;
}

.loginTitle {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.021em;
  color: #1E1E1E;
}

.loginSubmit {
  width: 380px;
  height: 40px;
  background: #9E1119;
  border: none;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  border-radius: 5px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.011em;
  color: #FFFFFF;
  margin-top: 50px;

  cursor: pointer;
}