html, body {
  height: 100%;
}

.container {
  display: flex;
  height: 100vh;
}

.left-side {
  width: 40%;
  background-color: #fff;
}

.header {
  background-color: #000;
  height: 150px;
  display: flex;
  border-bottom: 4px solid #91F93B;
  align-items: flex-end;
  position: relative;
  margin-bottom: 40px;
}

.header img {
  padding: 0 0 30px 50px;
  width: 100%;
  max-width: 280px;
}

.form-container {
  max-width: 440px;
  margin: auto;
  padding: 0px 20px 0px 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

label {
  font-size: 12px;
  margin-bottom: 8px;
  color: #828282;
}

#password {
  margin-bottom: 5px;
}

.password-container {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.password-container input {
  width: 100%;
  padding: 10px;
}

.password-container .toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 20px;
  margin-right: 5px;
}

.password-container .toggle-password img {
  width: 16px;
}

input, select {
  padding: 10px;
  margin-bottom: 15px;
}

.right-side {
  display: flex;
  width: 60%;
  background: url('/static/img/prgmtc_background.jpg') no-repeat center center/cover;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.login-btn-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.login-btn-block .submit-button {
  height: 45px;
}

form .submit-button {
  width: 90px;
  height: 42px;
}

.register-hint{
  font-size: 16px;
}

input[type='email']:focus,
input[type='password']:focus,
input[type='text']:focus {
  font-size: 16px;
}

@media screen and (max-width: 799px) {
  .left-side {
    width: 100%;
  }

  .header {
    height: 100px;
  }

  .header img {
    padding: 0px 10px 10px 10px;
  }

  .right-side {
    display: none;
  }
}