@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&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(bootstrap.min.css);
:root {
  --primary-color: #0034a5;
  /* Blue */
  --secondary-color: #030303;
  /* Gray */
  --font-P: "Poppine", sans-serif;
  --font-C: "Cinzel", sans-serif;
  --base-font-size: 16px;
  --font-wt-5: 500;
  --font-wt-3: 300;
  --spacing-unit: 1rem;
  --t-white: white;
  --t-maroon: #900;
}
.card-header span{
  background-color: var(--t-maroon);
  border-radius: 50%;
  color: var(--t-white);
  padding: 2px;
  display: block;
}
.bg-maroon {
  background-color: var(--t-maroon);
  color: var(--t-white);
}
 input::placeholder {
      color: #8f8f8f; /* Example: red color */
      opacity: 1; /* Ensure full opacity if desired, as some browsers default to lower opacity */
    }

body {
  background: #ebf9ff;
  background: linear-gradient(
    0deg,
    rgb(205, 241, 255) 0%,
    rgb(233, 244, 253) 50%,
    rgb(244, 251, 255) 100%
  );
  background-attachment: fixed;
  /* Ensure the body takes up at least the full viewport height */
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #990100;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0957cb;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.s-title {
  margin-bottom: 25px !important;
}
.title h1 {
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;

  color: var(--primary-color);
}

.login {
  /* */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login .content {
  background-color: #fff;
  border-radius: 10px !important;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
  padding: 30px;
  padding-top: 20px;
  padding-bottom: 15px;
}

.logo {
  margin: 0 auto;
  padding: 15px 0 25px 0;
  text-align: center;
}
.login .content h3 {
  color: #000;
}

.login .content h4 {
  color: #555;
}

.login .content p {
  color: #222;
}

.login .content .login-form,
.login .content .forget-form {
  padding: 0px;
  margin: 0px;
}

.login .content .input-icon {
  border-left: 2px solid #35aa47 !important;
  border-radius: var(--bs-border-radius);
}

.login .content .input-icon .form-control {
  border-left: 0;
}

.login .content .forget-form {
  display: none;
}

.login .content .register-form {
  display: none;
}

.login .content .form-title {
  font-weight: 300;
  margin-bottom: 25px;
}

.login .content .form-actions {
  background-color: #fff;
  clear: both;
  border: 0px;
  border-top: 1px solid #eee;
  padding: 15px 30px 15px 30px;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 25px;
}

.login .content .form-actions .checkbox {
  margin-left: 0;
  padding-left: 0;
}

.login .content .forget-form .form-actions {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.login .content .register-form .form-actions {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0px;
}

.login .content .form-actions .checkbox {
  margin-top: 8px;
  display: inline-block;
}

.login .content .form-actions .btn {
  margin-top: 1px;
}

.forget-password a {
  text-decoration: none;
  color: #555;
  font-size: 1rem;
  transition: 0.5s;
}

.forget-password a:hover {
  color: #35aa47;
}

.login .content .create-account {
  border-top: 1px dotted #eee;
  padding-top: 10px;
  margin-top: 15px;
}

.login .content .create-account a {
  display: inline-block;
  margin-top: 5px;
}

/* select2 dropdowns */
.login .content .select2-container {
  border-left: 2px solid #35aa47 !important;
}

.login .content .select2-container .select2-choice {
  border-left: none !important;
}

.login .content .select2-container i {
  display: inline-block;
  position: relative;
  color: #ccc;
  z-index: 1;
  top: 1px;
  margin: 4px 4px 0px -1px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
}

.login .content .has-error .select2-container i {
  color: #b94a48;
}

.login .content .select2-container a span {
  font-size: 13px;
}

.login .content .select2-container a span img {
  margin-left: 4px;
}

/* footer copyright */
.login .copyright {
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  color: #999;
  font-size: 13px;
}

/* body {
    background: #2A7B9B;
    background: linear-gradient(0deg, rgb(107 0 0) 0%, rgb(199 87 87) 50%, rgb(237 155 83) 100%);
} */
body {
  min-height: 100dvh;
}
.title h1 {
  padding: 0 0 0 15px;
}
.form-check {
  margin-bottom: 25px;
}
.rt {
  min-width: 10px;
}
/* ============================================================================= */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Mobile-first styles */
  body {
    min-height: 100dvh;
  }
  .login .content {
    width: 90%;
  }

  .logo img {
    width: 90px;
  }
  .title h1 {
    font-size: 30px;
    height: 18px;
    font-family: var(--font-P);
    font-weight: var(--font-wt-5);
  }
  /* .logo {
 padding: 0px 0 15px 0;
} */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  /* .logo {
 padding: 0px 0 15px 0;
} */
  .login .content {
    width: 90%;
  }
  .logo img {
    width: 90px;
  }
  .title h1 {
    font-size: 30px;
    height: 20px;
    font-family: var(--font-P);
    font-weight: var(--font-wt-5);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .logo img {
    width: 110px;
  }

  .title h1 {
    font-size: 45px;
    height: 30px;
    font-family: var(--font-C);
    font-weight: var(--font-wt-3);
  }

  .login .content {
    width: 1000px;
  }
}

/* XXL devices (larger desktops, 1400px and up LAPTOPS) */
@media (min-width: 1400px) {
  /* Styles here */
  .logo img {
    width: 190px;
  }

  .title h1 {
    font-size: 60px;
    height: 46px;
    font-family: var(--font-C);
    font-weight: var(--font-wt-3);
  }

  .login .content {
    width: 1000px;
  }
}
/* XXL devices (larger desktops, 1400px and up 1920) */
@media (min-width: 1600px) {
  /* Styles here */

  .login .content {
    width: 1200px;
  }
}

/***=====================================================================================
Input icons
***/
.input-icon {
  position: relative;
}

.input-icon > .form-control {
  padding-left: 33px;
}

.input-icon > i {
  color: #ccc;
  display: block;
  position: absolute;
  margin: 16px 2px 4px 10px;
  z-index: 3;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
}

.btn > i {
  font-size: 14px;
}
