@import "vars.css";
/* Page de login */
body.login {
  background-color: #303030;
  z-index: 999;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  color: var(--white);
}
body.login::before {
  background: rgba(255, 255, 255, 0.05);
  bottom: 100%;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  transform-origin: 100% 100%;
  transform: rotate(-15deg);
  width: 150%;
}
body.login .logo {
  width: 70%;
}
body.login .btn-section {
  margin-top: 50px;
  text-align: center;
}
body.login .btn-section a {
  color: var(--primary-text-color);
  font-size: 16px;
  font-weight: 400;
  margin: 2px 0 3px 0;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
body.login .btn-section a .fa-google {
  padding: 0 12px;
  line-height: 40px;
  float: left;
  background: var(--primary-color);
  color: var(--white);
}
body.login .btn-section a span {
  display: inline-block;
  padding: 0 15px;
}
body.login .btn-section a:hover {
  -ms-transform: scale(1.1);
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Safari 3-8 */
  transform: scale(1.1);
}
body.login .btn-section a:hover .fa-google {
  background: var(--primary-color-hover);
}
