body {
  margin: 0;
}

.login-background {
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 4.35rem);
  background: linear-gradient(
      to bottom,
      rgba(92, 77, 66, 0.8) 0%,
      rgba(92, 77, 66, 0.8) 100%
    ),
    url('../../media/sign-in-background.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.login-container {
  width: 400px;
  background: linear-gradient(#212121, #212121) padding-box,
    linear-gradient(145deg, transparent 35%, #c0561d, #fea364) border-box;
  border: 2px solid transparent;
  padding: 32px 24px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  color: white;
}

.login-form button:active {
  scale: 0.95;
}

.login-form .login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.login-form div label {
  display: block;
  margin-bottom: 5px;
  color: #717171;
  font-weight: 600;
  font-size: 12px;
}

.login-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
}

.login-form input

.login-form div textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #fff;
  height: 96px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
}

.login-form div input::placeholder {
  opacity: 0.5;
}

.login-form div input:focus {
  outline: none;
  border-color: #c0561d;
}

.login-form div textarea:focus {
  outline: none;
  border-color: #c0561d;
}

.login-form button {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #717171;
  font-weight: 600;
  width: 40%;
  background: #313131;
  border: 1px solid #414141;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  cursor: pointer;
  border-radius: 6px;
  margin: 0 auto;
}

.login-form button:hover {
  background-color: #fff;
  border-color: #fff;
}

.login-header {
  margin-top: 0;
  width: 100%;
  height: 3rem;
}
.login-header h2 {
  float: left;
  margin-top: 0;
}
.login-header img {
  float: right;
  height: 100%;
}
input {
  box-sizing: border-box;
}
