* {
  margin: 0;
  padding: 0;
  font-family: system-ui;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
/*  background: #f2f2f2;
*/}

.container {
  padding: 0 20px;
}

.sub-container {
  max-width: 650px;
  width: 100%;
  height: 350px;
  margin: 150px auto 0;
  display: flex;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.125);
}

.sub-container .banner-img {
  width: 300px;
  height: 100%;
}

.sub-container .banner-img img {
    width: 50%;
    height: 40%;
    margin-top: 35%;
    margin-left: 25%;
}

.sub-container .login-form {
  width: 350px;
  height: 100%;
  text-align: center;
  padding: 40px 35px 0;
  position: relative;
}

.sub-container .login-form .title {
  color: #FF851B;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.login-form .label {
  color: #524a4a;
  font-size: 14px;
  letter-spacing: 2px;
}

.login-form .input {
  margin: 5px 0 15px;
  width: 100%;
  padding: 8px;
  margin-top: 20px;
}

.login-form .forgot a {
  color: #0978ba;
  font-size: 18px;
}

.btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: #FF851B;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}
.input{
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e67e22;
    box-shadow: inset 0px 0px 9px -1px #e67e22;
    text-transform:uppercase;
}

@media screen and (max-width: 500px) {
  .sub-container {
    flex-direction: column;
    max-width: 300px;
    height: auto;
    margin-top: 50px;
  }
  .sub-container .banner-img img{
    width: 50%;
    height: 60%;
    margin-top: 20%;
    margin-left: 25%;
  }
  .sub-container .login-form {
    width: 100%;
    padding: 20px 35px 0;
  }
  .sub-container .login-form .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .login-form .input {
    margin-bottom: 10px;
  }

  .login-form .forgot {
    margin-bottom: 55px;
  }
  .btn {
    margin-top: 20px;
    padding: 10px;
  }

}