﻿body .login-container > .row {
  min-height: 60vh;
}
body .login-form-2 {
  padding: 5%;
  background: #0062cc;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
  min-width: 500px;
  min-height: 300px;
}
body .login-form-2 h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
body .login-form-2 .btnSubmit {
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #0062cc;
  background-color: #fff;
}
body .login-form-2 .ForgetPwd {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
body .login-form-2 form > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
body .login-form-2 form > div input {
  width: 100%;
  height: 48px;
  padding: 8px;
}
body .left-panel {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #f8f9fa;
  border-right: 1px solid #dee2e6;
  transition: width 0.3s;
}
body .left-panel .list-group {
  border-radius: 0;
}
body .left-panel .list-group a {
  border-right: none;
  width: 100%;
  padding: 15px 20px;
  font-weight: 500;
  color: #333;
}
body .left-panel .list-group a:hover {
  background: #0062cc;
  color: white;
}
body .navbar {
  position: fixed;
  top: 0;
  left: 250px;
  width: calc(100% - 250px);
  z-index: 1000;
}
body .custom-container {
  padding: 16px;
  padding-top: 66px;
  width: calc(100% - 250px);
  margin-left: 250px;
}

.hidden {
  display: none !important;
}
