:root{
  --primary: #f5f5f5;
  --bg: #ffffff;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
html,
body {
  height: 100%;
  font-family: 'Roboto';
}
body {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  background-size: 100%;
  background-position: center;
}
#login_area {
  display: flex;
  align-items: center;
  background: url("../../images/login/pramod-tiwari--YapdmUwuEk-unsplash.jpg");
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 75%;
}
#company_area {
  background-image: url("/../images/login/company-area.jpg");
  background-size:contain;
  background-repeat: no-repeat;
  background-position-x: left;
}
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-floating:focus-within {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.glass-container {
  margin: auto;
}
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 15px;
}
#btn-login:hover {
  background: #2196F3;
  color: white;
}
/* laptop */
@media(max-width: 1366px){
  html{
      font-size: 75%;
  }
}
/* tablet */
@media(max-width: 758px){
  #login_area{
    width:100% !important;
    margin-top:13vh !important;
  }
  #login-form #username, .login-form #email{
    min-height:35px !important;
    font-size:1em;
  }
  #company_area{
    display:none !important;
  }
}
/* mobile phone*/
@media(max-width: 450){
  html{
      font-size: 55%;
  }
}
