:root {
  --color-primary: #215c95;
  --color-gray1: #111;
  --color-gray2: #222;
  --color-gray3: #333;
  --color-gray4: #444;
  --color-gray5: #555;
  --color-gray6: #666;
  --color-gray7: #777;
  --color-gray8: #888;
  --color-gray9: #999;
  --color-gray-light1: #aaa;
  --color-gray-light2: #bbb;
  --color-gray-light3: #ccc;
  --color-gray-light4: #ddd;
  --color-gray-light5: #eee;
  --color-gray-light6: #f2f2f2;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Poppins", sans-serif;
  min-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: var(--color-gray3);
  line-height: 1.4;
  font-size: 16px;
  font-weight: normal;
  overflow-x: hidden;
  position: relative;
}

img.img-responsive {
  max-width: 100%;
  display: block;
  height: auto;
  width: 100%;
}

.header {
  padding: 10px 15px;
  width: 100%;
  display: flex;
  justify-content: end;
}
.header .logo-container {
  width: 70px;
}
.header .logo-container img {
  width: 100%;
}

#main {
  margin: 0 auto;
  /* width: 1024px; */
  /* height: 768px; */
  /* transform-origin: 50% 0%; */
  width: 100%;
  max-width: 760px;
  padding: 20px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  /* background: url("../media/images/bg.jpg") no-repeat; */
  /* background-size: contain; */
}

.section-title h1 {
  font-size: 24px;
  margin-bottom: 0px;
}

.helper-text h3 {
  font-size: 16px;
}

.note {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray6);
}

.btn.back-btn {
  background-color: #d8edff;
  border-color: #bad3e8;
  color: #215c95;
  font-size: 15px;
  line-height: 1.25;
  padding: 8px 10px;
}
.btn.back-btn img {
  height: 15px;
  display: inline-block;
  margin-right: 5px;
}
.btn.back-btn:hover {
  background-color: #cde5fb;
  border-color: #bad3e8;
  color: #215c95;
}

.btn.btn-simple {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-gray6);
  font-weight: 500;
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  z-index: 1;
  transition: 0.25s ease-in-out;
}
.btn.btn-simple:hover {
  transform: translateY(-3px) scale(1.02);
}

.list-group-theme .list-group-item {
  background-color: transparent;
  border: 1px solid var(--color-gray-light4);
  padding-left: 65px;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.25s ease-in-out;
  display: flex;
  align-items: center;
  min-height: 60px;
}
.list-group-theme .list-group-item::before {
  content: "";
  font-family: "Font Awesome";
  display: inline-block;
  font-size: 16px;
  position: absolute;
  /* left: 0; */
  /* top: 10px; */
  /* width: 18px; */
  /* height: 18px; */
  /* background: url("../imgs/broken-link.png") no-repeat center; */
  /* background-size: contain; */
  left: 10px;
  top: 8px;
  width: 42px;
  height: 42px;
  background: url("img/broken-link.png") no-repeat center;
  background-size: 24px;
  background-color: #e3f2fe;
  border-radius: 50%;
  border: 2px solid #b1d2eb;
  transition: 0.25s ease-in-out;
}
.list-group-theme .list-group-item:hover {
  color: #375091;
  border-color: #b1d2eb;
  background-color: #f4faff;
  transform: translateY(1px);
}
.list-group-theme .list-group-item:hover::before {
  transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .form-img-container img {
    width: 70%;
  }
}

.form-col {
  max-width: 450px;
}

.form-card {
  padding: 25px;
}

.form-card .form-group {
  position: relative;
}
.form-card .form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-gray6);
}

.form-card .form-group .form-control {
  font-size: 16px;
  color: var(--color-gray6);
}
.form-card .error {
  color: red;
  font-size: 13px;
}

.floating-alert {
  position: fixed;
  top: 1%;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 400px;
  /* background-color: #4caf50; */
  /* color: white; */
  /* background-color: #afe8b2; */
  /* color: #1e6b1e; */
  padding: 15px;
  border-radius: 5px;
  display: none;
  z-index: 1050;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
}

.error-message {
  color: #ff6767;
  font-size: 13px;
  margin-top: 5px;
}

.btn.btn-theme {
  min-width: 150px;
  padding: 12px 15px;
  text-align: center;
  background-color: var(--color-gray4);
  border: 1px solid var(--color-gray4);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.btn.btn-theme.btn-primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}

.copyright_section {
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: var(--color-gray6);
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #f9f9f9;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .list-group-theme .list-group-item {
    font-size: 14px;
    padding-left: 60px;
  }
  .list-group-theme .list-group-item::before {
    background-size: 20px;
    width: 38px;
    height: 38px;
  }
}
