/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-font: "Poppins", sans-serif;
}

* {
  font-family: var(--primary-font) !important;
}

/* LOGIN */
.page-login {
  background: #fff;
  width: 100%;
  overflow: hidden;
}
.login-cover {
  position: relative;
}
.login-cover img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  object-position: center right;
}
.login-cover img.object {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  object-position: center bottom;
  z-index: 2;
}
.login-cover:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, #212121 100%);
  z-index: 2;
}
.login-cover .caption {
  position: relative;
  z-index: 3;
  padding: 40px;
}
.login-cover .caption h3 {
  font-size: 2rem;
}
@media (max-width: 800px) {
  .page-login {
    overflow: auto;
  }
}

/* ====== */
.z-10 {
  z-index: 10;
}

.login-background {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  transform: scale(1);
  transform-origin: bottom left;
}

.logo-app {
  width: 175px;
  object-fit: contain;
}

.logo-riung {
  position: absolute;
  width: 150px;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.logo-inshine {
  margin-left: auto;
}

.login-box {
  padding: 60px;
  border-radius: 40px 0 0 40px;
}

.login-form {
  margin: auto;
}

.login-decoration {
  position: absolute;
  top: 0;
  height: 300px;
  width: 100%;
  background-color: #0646a0;
  z-index: 10;
  border-radius: 0 0 200px 200px;
}

@media screen and (max-width: 1024px) {
  .login-background {
    transform: scale(0.8);
    transform-origin: bottom left;
  }
}

@media screen and (max-width: 768px) {
  .login-box {
    padding: 20px 30px;
  }

  .logo-app {
    width: 145px;
  }

  .logo-riung {
    width: 120px;
  }
}

@media screen and (max-width: 425px) {
  .login-box {
    padding: 30px;
    border-radius: 0;
  }

  .login-form {
    margin-top: 80px;
  }

  .logo-inshine {
    margin-left: auto;
    margin-right: auto;
  }

  .login-background {
    transform: scale(0.9);
  }
}
