@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");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");
@import url("//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css");

:root {
  --primary-color: #3b7acc;
  --danger-color: #c30e0e;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000;
}
main {
  height: 100vh;
  width: 100%;
}
.auth-page {
  height: 100%;
  padding: 0;
  margin: 0;
}
.auth-page .card {
  width: 100%;
  height: 100%;
  max-width: 500px;
  justify-content: center;
  border-radius: 0;
}
.auth-page .card .caption {
  color: #555;
}

.bg-auth {
  background-image: url("/images/auth/bg-auth.jpg");
  background-size: cover;
  background-position: 66%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.bg-black-hide {
  position: absolute;
  opacity: 0.5;
  inset: 0;
  background-color: black;
}

.logo-img {
  text-align: center;
}
.logo-name {
  font-size: 20px;
  font-weight: 500;
}
h1 {
  font-size: 36px;
  font-weight: 600;
}
label {
  font-size: 14px;
  font-weight: 600;
}
a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  text-decoration-line: underline;
}
.form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
  height: 44px;
  font-size: 14px;
}
input:focus,
.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: #dee2e6 !important;
}
input::-ms-reveal, /* Edge */
input::-webkit-credentials-auto-fill-button,
input::-webkit-password-toggle-button {
  display: none;
}
input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none;
  appearance: none;
}

.btn-outline-primary {
  border: 1px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}
.text-primary {
  color: var(--primary-color) !important;
}
.btn {
  border-radius: 5px;
  padding: 0.625rem 1rem;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

h2 {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
}

/* Custom toastr */
.toast-top-right {
  top: 65px;
  right: 12px;
  border-radius: 10px;
}
#toast-container > .toast-success {
  background-image: url(../images/toastr-success.png) !important;
}
#toast-container > div {
  padding: 15px 15px 15px 60px;
}
.toast-title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.toast-message {
  color: #535353;
  font-size: 12px;
  font-weight: 500;
}
.toast-error .toast-message {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .auth-page .card {
    background-color: transparent;
    color: white;
  }
  .auth-page .card .caption {
    color: white;
  }
}
