﻿:root {
  --primary-color: #15b7ce;
  --bg-sidebar-menu-active: linear-gradient(45deg, #15b7ce, #1ee3fe);
  --bg-menu-gradient: linear-gradient(45deg, #15b7ce, #1ee3fe);
  --bg-menu-gradient-hover: #15b7ce;
}

html, body {
  height: 100%;
}

.footer {
  margin-bottom: 15px;
}
.footer p {
  margin: 0 0 4px;
  line-height: 20px;
}

.btn-primary, .btn-primary:link, .btn-primary:visited {
  background: #ae1c3f;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.form-login-body {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  background: #46abc3 url(images/bg-login.jpg) no-repeat bottom center;
  background-size: 100%;
  padding-bottom: 80px;
}
.form-login-body .form-login-content {
  max-width: 360px;
}
.form-login-body .form-login-content .box-shadow {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  margin-top: 40px;
}
.form-login-body .form-item {
  width: 100%;
  padding: 36px 24px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.form-login-body .form-item:before {
  content: "";
  left: 0;
  right: 0;
  bottom: -50px;
  height: 50px;
  position: absolute;
  background: url(images/shadow.png) no-repeat top center;
  background-size: contain;
}
.form-login-body .logo {
  display: inline-block;
  top: 50%;
  left: 175px;
  right: initial;
  bottom: initial;
  position: absolute;
  z-index: 1000;
  margin-top: -40px;
}
.form-login-body .logo img {
  width: 200px;
  height: 80px;
  object-fit: contain;
}
.form-login-body .form-login-control {
  display: flex;
  align-items: center;
}
.form-login-body .form-login-control .btn-primary {
  width: inherit;
  border-radius: 0px;
  padding: 10px 28px;
  flex: 1;
  margin-bottom: 10px;
  background-color: var(--primary-color);
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
  border: 0;
  font-weight: bold;
  font-size: 15px;
}
.form-login-body .form-login-control .btn-primary:hover {
  background: var(--bg-menu-gradient);
}
.form-login-body .form-login-control .btn-primary:focus {
  outline: none;
}
.form-login-body #btn-call-modal-forgotpassword {
  font-size: 13px;
  cursor: pointer;
  color: #333;
}
.form-login-body #btn-call-modal-forgotpassword:hover {
  color: #3a75b4;
  text-decoration: none;
}
.form-login-body .form-control {
  border: 2px solid #cddaf3;
  background-color: white;
  color: #23394A;
  border-radius: 0;
  margin-bottom: 15px;
  height: 40px;
  padding: 0 15px;
  box-shadow: none;
}
.form-login-body .form-control:focus, .form-login-body .form-control:hover {
  background-color: white;
  color: #000;
  outline: none;
  box-shadow: none;
}
.form-login-body p.note {
  margin-bottom: 28px;
}
.form-login-body .logitn-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .form-login-body .form-login-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .form-login-body .form-login-content .box-shadow {
    margin-top: 0;
  }
}
