


main {
  background-image: url("/assets/images/banner-login.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  min-height: calc(100vh - 62px);
  overflow-y: auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 32px;
  font-family: "Open Sans", sans-serif;

}

main .card {
  background-color: #F7F7F7;
  border-radius: 16px;
  overflow: hidden;
  max-width: 384px;
  width: 100%;
}

.card .card-header {
  background: #EFEFFF;
  padding: 16px;
}

.card .card-header p {
  color: #233060;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.card .card-footer {
  background-color: #F7F7F7;
  padding: 16px;
  border-top: 1px solid #D1D1D1;
}

.card .card-footer p {
  color: #646464;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.card .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 484px;
}


.card .card-content .logo {
  margin: 32px 0;
}

.card .card-content h2 {
  color: #233060;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.card .card-content p {
  color: #646464;
  line-height: 1.2;
  text-align: center;
}

form {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  margin-top: 16px;
}


.btn-cancel {
  color: #646464;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 32px;
  display: block;
}


.token-input {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.token-input input {
  font-family: "Open Sans", sans-serif;
  width: 44px;
  height: 64px;
  text-align: center;
  font-size: 20px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.card .content-token {
  justify-content: flex-start;
}

.banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  main {
    background: #233060;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    gap: 16px;
    min-height: auto;
    overflow: visible;
  }

  main .card {
    position: relative;
    max-width: calc(100% - 32px);
    margin-top: -80px;
  }

  .banner-mobile {
    display: block;
    width: 100%;
  }

  .card .card-content {
    height: auto;
  }

  .card .card-content .logo {
    margin: 0 0 16px;
  }

  .btn-cancel {
    margin-top: 32px;
  }
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;

  display: none;

}

.overlay.show {
  display: flex;
}

.popup {
  max-width: 400px;
  width: 100%;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px #0000001F;
  text-align: center;
  padding: 32px 24px;
}

.popup-header {
  margin-bottom: 20px;
}

.popup-header h2 {
  color: #233060;
  font-size: 24px;
  font-weight: bold;
  margin: 16px 0;
}

.popup-body p {
  color: #646464;
  margin-bottom: 16px;
}

.popup-body .btn-primary {
  width: fit-content;
  text-transform: capitalize;
  margin: 0 auto;
}

button {
  background-color: green;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}

.cc-nb-okagree, .cc-nb-reject, .cc-cp-foot-save{
  background-color: #233060 !important;
}

.checkbox-container {
  margin: 24px 0 32px;
}