@import 'fonts/roboto.css';
@import url("fontawesome/css/all.css");
* {
  box-sizing: border-box;
}

body.light-theme {
  --color-background: #fff;
  --color-forecolor: #000;
  --color-button-bg: #2877ff;
  --color-button-fore: #fff;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 768px) {
  body.light-theme {
    background-image: url("../images/slider3.jpg");
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  body.light-theme {
    background-image: url("../images/slider3.jpg");
  }
}

body.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 768px) {
  body.flex {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  body.flex {
    padding-top: 100px;
  }
}

strong {
  font-weight: 700;
}

body {
  height: 100vh;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 16px;
}

.page-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 70vh;
  min-height: 500px;
  flex-wrap: wrap;
}
.page-content .page-content-in {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 992px) {
  .page-content {
    left: 50px;
    width: 30vw;
    min-width: 450px;
  }
}
@media (max-width: 768px) {
  .page-content {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    height: 80vh;
    min-height: 80vh;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .page-content {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    height: 80vh;
    min-height: 80vh;
  }
}

.main-box, .main-box-vflex {
  border-radius: 5px;
  padding: 5px;
  background-color: var(--color-background);
  width: 1000%;
}
.main-box h2, .main-box-vflex h2 {
  font-size: 35px;
}
.main-box *, .main-box-vflex * {
  font-size: 16px;
  font-weight: 300;
}
.main-box strong, .main-box-vflex strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .main-box, .main-box-vflex {
    width: 80vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-box, .main-box-vflex {
    width: 80vw;
    min-width: 400px;
  }
}
.main-box-vflex {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
  align-items: center;
  height: 100%;
  min-height: 80vh;
  margin: 0 20px;
  padding: 20px 5px;
}

.app-round-button {
  border-radius: 20px;
  border: 0;
  padding: 10px;
  background-color: var(--color-button-bg);
  color: var(--color-button-fore);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.app-round-button * {
  font-weight: 700;
  margin: 0 5px;
}
.app-round-button img {
  margin: 0 5px;
  max-height: 16px;
}
.app-round-button:hover {
  transform: scale(1.05);
}
.app-round-button-white {
  background-color: #fff;
  color: #000;
}

.app-borderless-button {
  border: 0;
  padding: 10px;
  background-color: transparent;
  color: var(--color-forecolor);
  font-size: 19px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.app-borderless-button * {
  font-weight: 300;
  margin: 0 5px;
}
.app-borderless-button:hover {
  transform: scale(1.05);
}
.app-borderless-button-white {
  color: #fff;
}

.app-screen-text {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 992px) {
  .app-screen-text {
    width: calc(45vw - 20px);
  }
}
@media (max-width: 768px) {
  .app-screen-text {
    width: 80vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .app-screen-text {
    width: 80vw;
  }
}

.app-input {
  background-color: white;
  position: relative;
  border: 1px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.app-input * {
  transition: all 0.2s ease;
}
.app-input label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  background: #fff;
  padding: 0 10px;
  pointer-events: none;
}
.app-input img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.app-input input {
  padding: 9px;
  border-radius: 7px;
  border: none;
  width: calc(100% - 20px);
  background-color: transparent;
}
.app-input input:visited, .app-input input:active, .app-input input:focus {
  outline: none;
}
.app-input .float-label, .app-input:focus-within label {
  top: 0;
  left: 10px;
  font-size: 12px;
  padding: 2px;
}
.password-toggle-box {
  display: inline-block;
}
.password-toggle-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.alert {
  color: #ff0e0e;
  font-weight: 300;
}

.alert-success {
  color: #4bb543;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hide-in-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hide-in-mobile {
    display: none !important;
  }
}

.hide-in-desktop {
  display: none !important;
}
@media (max-width: 768px) {
  .hide-in-desktop {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hide-in-desktop {
    display: block !important;
  }
}

.main-slider {
  height: 100vh;
  width: 100vw;
}
@media (max-width: 768px) {
  .main-slider {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-slider {
    display: none !important;
  }
}
.main-slider .slide {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.main-slider .slide .app-text {
  position: absolute;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  width: 50%;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 3vw;
}
.main-slider .slide img {
  height: 100vh;
  width: 100vw;
}
.copyright {
  right: 10px;
  bottom: 10px;
  z-index: 99999999999999;
  position: fixed;
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 12px;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 60px;
  }
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.app-header .sign-in {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-header .sign-in span {
  font-weight: 700 !important;
}
@media (min-width: 768px) {
  .app-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
  }
}

.upload-file-name {
  line-break: anywhere;
  padding: 10px;
}

.app-link {
  color: rgb(0, 97, 254);
}
.app-link .app-link-text {
  font-size: 14px;
  font-weight: 500;
  font-family: "Atlas Grotesk Web", "Atlas Grotesk", AtlasGrotesk, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.sign-in-button {
  color: var(--color-button-fore);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: #2877ff;
  border-radius: 0;
  display: flex;
  border: 1px #A1A1A1;
  align-items: center;
  padding: 1px;
}
.sign-in-button * {
  font-weight: 700;
  margin: 0 5px;
}
.sign-in-button img {
  margin: 0 5px;
  max-height: 16px;
  width: 3.1em;
  height: 3.1em;
}
.sign-in-button-white {
  background-color: #fff;
  color: #000;
}
.sign-in-button:hover {
  background-color: #1c6cf6;
}
.sign-in-button span {
  padding: 10px 20px;
}
.sign-in-button img {
  margin: 0;
  margin-right: 5px;
  max-height: 50px;
  background-color: #fff;
  padding: 13px;
}

.backhome {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.login-box {
  padding: 15px 30px;
}

/*# sourceMappingURL=common.css.map */
