@font-face {
  font-family: "msTrinhLe";
  font-weight: 400;
  src: url("../fonts/MonaSans-Regular.ttf");
}
@font-face {
  font-family: "msTrinhLe";
  font-weight: 600;
  src: url("../fonts/MonaSans-Bold.ttf");
}
@font-face {
  font-family: "msTrinhLe";
  font-weight: 800;
  src: url("../fonts/MonaSans-ExtraBold.ttf");
}
@-webkit-keyframes vFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes vFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*reset css*/
:root[data-theme=light] {
  --bg-base: 255, 255, 255;
  --bg-main: rgba(var(--bg-base), 1);
  --bg-main-80: rgba(var(--bg-base), .8);
  --bg-surface: #f2f2f2;
  --primary-100: #E1AF00;
  --neutral-base: 0, 0, 0;
  --neutral-100: rgba(var(--neutral-base), 1);
  --neutral-60: rgba(var(--neutral-base), .6);
  --neutral-20: rgba(var(--neutral-base), .2);
  --neutral-10: rgba(var(--neutral-base), .1);
  --neutral-0: rgba(var(--neutral-base), 0);
}

:root[data-theme=dark] {
  --bg-base: 20, 21, 23;
  --bg-main: rgba(var(--bg-base), 1);
  --bg-main-80: rgba(var(--bg-base), .8);
  --bg-surface: #1C1E21;
  --primary-100: #FFCE2D;
  --neutral-base: 242, 242, 242;
  --neutral-100: rgba(var(--neutral-base), 1);
  --neutral-60: rgba(var(--neutral-base), .6);
  --neutral-20: rgba(var(--neutral-base), .2);
  --neutral-10: rgba(var(--neutral-base), .1);
  --neutral-0: rgba(var(--neutral-base), 0);
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  outline: none;
  border: none;
}

ul, li, ol {
  list-style: none;
}

p {
  margin: 5px 0;
  font-weight: 400;
}

body {
  font-family: "msTrinhLe", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4 !important;
  background: var(--bg-main);
  color: var(--neutral-100);
}

.clearfix {
  clear: both;
}

.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

a:active, a:focus {
  text-decoration: none;
}

button, a, img, li, input[type=button], input[type=submit] {
  outline: none;
  border: none;
}
button:hover, button:focus, button:active, a:hover, a:focus, a:active, img:hover, img:focus, img:active, li:hover, li:focus, li:active, input[type=button]:hover, input[type=button]:focus, input[type=button]:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active {
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "VxK", "Open Sans", sans-serif;
}

input[type=text], input[type=email], input[type=number], input[type=tel], textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  padding: 10px;
  background: #fff;
  outline: none;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, input[type=tel]:focus, textarea:focus {
  outline: none;
}

body {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../images/bg-header.png) center center no-repeat #111;
}
.logo{
  color: #fff;
  img{
    display: block;
    margin: 0 auto 32px;
  }
  h1{
    font-family: msTrinhLe;
    font-size: 48px;
    line-height: 48px;
    font-weight: bold;
    text-align: center;
  }
  p{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 12px;
  }
}
