/* Font Size */
/* Font Weight */
/* Width */
/* Height */
/* Display */
/* Margin */
/* Padding */
/* Cursor */
/* Background Color */
/* Color */
.login-container {
  width: 100%;
  height: 100%;
  background: rgba(203, 255, 239, 0.768627451);
  display: flex;
  justify-content: center;
}
.login-container.vehicle-record {
  background: rgba(114, 183, 249, 0.6509803922);
}

.login {
  background: url(/images/login/background.jpg) no-repeat;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
.login .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login .input-wrap-title {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
}
@media (max-width: 576px) {
  .login .input-wrap-title {
    font-size: var(--text-base) !important;
    line-height: var(--text-base--line-height);
  }
}
.login .input-wrap-title {
  color: var(--tc-180);
}
.login .input-wrap input {
  font-size: 14px;
  height: 45px;
  border-radius: 8px;
}
.login .box {
  width: 400px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3019607843);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
  color: black;
  transition: height 2s ease-in-out;
}
.login .box .img-container {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}
.login .box .img-container img {
  width: 140px;
}
.login .box .title {
  margin: 15px 0 5px 0;
  text-align: center;
}
.login .box .subtitle {
  text-align: center;
  color: #6d6d6d;
}
.login .box .btn {
  cursor: pointer;
  border: none;
  color: white;
  background: #e5751b;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 12pt;
  height: 45px;
}
.login .box .btn:hover {
  box-shadow: 0 0 5px #e5751b;
}
.login .box .btn-submit {
  width: 100%;
  margin-top: 10px;
}
.login .pwd-box {
  z-index: 999;
  position: relative;
}
.login .pwd-box .pwd-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 576px) {
  .login {
    padding: 0 15px;
  }
  .login .text {
    font-size: var(--mobile-font-small);
  }
  .login .box {
    width: 95%;
  }
}/*# sourceMappingURL=login.css.map */