:root {
  --white-color: #fff;
  --pri-color: rgba(255,255,255,0.8);
  --hig-color: #99ffff;
  --bg-color:rgba(0, 0, 0, 0.4);
  --bo-color: rgba(255,255,255,0.7);
  --inp-bg-color:rgba(255,255,255, 0.4);
  --img-bg-color: #fff;
  --bg-path: url(img/tthc-render.jpg);
}

.light {
  /* Light theme */
  --white-color: #333;
  --pri-color: rgba(0, 0, 0, 0.7);
  --hig-color: #0066cc;
  --bg-color: rgba(255, 255, 255, 0.6);
  --bo-color: rgba(0,0,0,0.3);
  --inp-bg-color: rgba(0, 0, 0, 0.1);
  --text-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --white-color: none;
  --bg-path: url(img/tthc-render-light.jpg);
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: var(--bg-path);
  background-repeat: no-repeat;
  background-size: 100%;
  color: var(--pri-color);
  font-size: 0.9em;
  transition: all 1s ease;
}
body div.main#main{
  margin: 50px 75px; 
  width: calc(100% - 150px); /* 75px trái + 75px phải */
  height: calc(100vh - 100px); /* 50px trên + 50px dưới */
}
.mail-title{
  padding: 70px 0px 0px 0px;
}
.mail-title img {
  width: 80px;
}
a{
  color: var(--pri-color);
  text-decoration: none;
}
a:hover{
  color: var(--hig-color);
}
h1{
  color: var(--white-color);
  font-size: 1.8em;
  margin-top: 20px;
}

h2{
  color: var(--hig-color);
  font-weight: 600;
  font-size: 2em;
  margin-top: 10px;
}
h3{
  font-weight: 600;
  font-size: 1.6em;
  margin-top: 10px;
}
.underline{
  text-decoration: underline;
}
.form-login{
  margin: 40px 100px;
}
.label{
  line-height: 2em;
}
.no-radius{
  border-radius: 0;
}
.form-login .form-control{
  background: var(--inp-bg-color);
  color: var(--white-color);
  line-height: 1.3em;
}
.border-top{
  border-top: 1px solid var(--bo-color) !important ;
}
.border-hig{
  border: 1px solid var(--hig-color);
}
.block{
  display: block;
  width: 100%;
}
.ref{
  padding: auto;
  margin: 70px 20px 0px 20px;
}
.bg{
background: var(--bg-color);
}
.ref-item{
  padding:20px 0px;
}
.ref  .img-bg{
  background: var(--img-bg-color);
  border-radius: 50%;
}
.ref img{
  width: 60px;
}
.footer{
  margin: 20px 30px 50px 30px;
  padding: 20px 20px;
  font-size: 0.9em;
}
.pointer{
  cursor: pointer;
}

@media (max-width: 992px) {
  
body div.main#main{
  margin: 0px 0px; 
  height: 100vh; /* 50px trên + 50px dưới */
  width: 100% ; /* 75px trái + 75px phải */
}

body {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.mail-title {
  padding: 120px 0px 0px 0px;
}
.mail-title img {
  width: 60px;
}h1 {
  color: var(--white-color);
  font-size: 1.2em;
}
h2 {
  font-size: 1.1em;
}
h3 {
  font-size: 1.2em;
}
.form-login {
  margin: 40px 0px;
}
.footer {
  margin: 20px 0px 3px 0px;
  font-size: 0.8em;
  width: 100%;
  position: absolute;
  bottom: 0;
}
}