.pagination-container {
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #fff;
  display: flex;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
.pagination-container .pagination-element {
  border-right: 1px solid #d1d5db;
  min-width: 38px;
  min-height: 38px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all 0.2s ease-in-out;
}
.pagination-container .pagination-element:hover {
  cursor: pointer;
  background-color: #f9fafb;
}
.pagination-container .pagination-element span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
.pagination-container div:last-of-type {
  border-right: none;
}
.pagination-container .pagination-element-selected {
  background-color: #c9f153;
}
.pagination-container .pagination-element-selected:hover {
  background-color: #c9f153;
}
.pagination-container .pagination-element-selected span {
  color: #145455;
}

.navbar {
  height: 70px;
  background-color: #f0f5f3 !important;
  /*
  * Container
  */
  /*
  * Vissualy hidden radiobuttons
  */
  /* 
  * Labels need to be the same size
  */
  /* 
  * Adjust z-index of last label since that contains 
  * the paddle that needs to go beneath all other labels 
  */
  /*
  * Paddle 
  */
  /*
  * Move paddle depending on which option is selected
  */
  /*
   * Labels 
   */
  /*
   * Dividers
   */
  /*
   * Selected option 
   */
  /*
   * Hide dividers before and after the selected option
   */
  /*
   * Focus style for keyboard navigation
   */
  /*
   * Paddle
   */
}
.navbar .dropdown-menu[data-bs-popper] {
  top: 32px;
}
.navbar .dropdown-menu {
  border-radius: 12px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 8px;
}
.navbar .dropdown-menu .dropdown-item {
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #e5e7eb;
}
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #d1d5db;
}
.navbar .dropdown-menu .dropdown-menu-element {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar .dropdown-menu .dropdown-menu-element svg {
  min-height: 24px;
  min-width: 24px;
}
.navbar .dropdown-menu .dropdown-menu-element a {
  text-decoration: none;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}
.navbar .navbar-toggler {
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.navbar .navbar-brand .big-logo {
  height: 46px;
}
@media screen and (max-width: 480px) {
  .navbar .navbar-brand .big-logo {
    display: none;
  }
}
.navbar .navbar-brand .small-logo {
  height: 40px;
}
@media screen and (min-width: 481px) {
  .navbar .navbar-brand .small-logo {
    display: none;
  }
}
.navbar .navbar-responsive-right-container {
  display: none;
}
@media screen and (max-width: 992px) {
  .navbar .navbar-responsive-right-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.navbar .dropdown-toggle-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar .common-text {
  color: #111827;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #111827 !important;
}
.navbar .navbar-left {
  gap: 64px;
}
.navbar .navbar-right {
  gap: 24px;
}
.navbar .active-indicator {
  width: 8px;
  height: 5px;
  border-radius: 30px;
  background: #d82f35;
}
.navbar .segmented-controls {
  display: flex;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
}
.navbar .segmented-controls input {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}
.navbar .segmented-controls label {
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  flex: 1 1 0px;
  position: relative;
  z-index: 2;
  transition: inherit;
}
.navbar .segmented-controls label:last-of-type {
  z-index: 1;
}
.navbar .segmented-controls label:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background-color: black;
  transition: inherit;
}
.navbar .segmented-controls input:nth-last-of-type(2):checked ~ label:last-of-type::after {
  transform: translateX(-100%);
}
.navbar .segmented-controls input:nth-last-of-type(3):checked ~ label:last-of-type::after {
  transform: translateX(-200%);
}
.navbar .segmented-controls input:nth-last-of-type(4):checked ~ label:last-of-type::after {
  transform: translateX(-300%);
}
.navbar .segmented-controls input:nth-last-of-type(5):checked ~ label:last-of-type::after {
  transform: translateX(-400%);
}
.navbar .segmented-controls input:nth-last-of-type(6):checked ~ label:last-of-type::after {
  transform: translateX(-500%);
}
.navbar .segmented-controls input:nth-last-of-type(7):checked ~ label:last-of-type::after {
  transform: translateX(-600%);
}
.navbar .segmented-controls input:nth-last-of-type(8):checked ~ label:last-of-type::after {
  transform: translateX(-700%);
}
.navbar .segmented-controls input:nth-last-of-type(9):checked ~ label:last-of-type::after {
  transform: translateX(-800%);
}
.navbar .segmented-controls input:nth-last-of-type(10):checked ~ label:last-of-type::after {
  transform: translateX(-900%);
}
.navbar .segmented-controls {
  border-radius: 0.5rem;
  background: #fff;
  height: 2rem;
  padding: 2px;
}
.navbar .segmented-controls label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  min-width: 30px;
}
.navbar .segmented-controls label:not(:first-of-type)::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 0.5rem;
  left: 0;
  bottom: 0.5rem;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  transition: inherit;
}
.navbar .segmented-controls input:checked + label {
  font-weight: 600;
}
.navbar .segmented-controls input:checked + label::before,
.navbar .segmented-controls input:checked + label + input + label::before {
  opacity: 0;
}
.navbar .segmented-controls label:last-of-type::after {
  background: #c9f153;
  border-radius: 0.4275rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-control-standard {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(49, 121, 90, 0.2);
  background: #fff;
}
.form-control-standard::-moz-placeholder {
  font-size: 14px;
  opacity: 1; /* Firefox */
  color: #6b7280;
}
.form-control-standard::placeholder {
  font-size: 14px;
  opacity: 1; /* Firefox */
  color: #6b7280;
}
.form-control-standard option {
  font-size: 14px;
}

.form-control-common {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(49, 121, 90, 0.3);
  background: rgba(49, 121, 90, 0.1);
}
.form-control-common::-moz-placeholder {
  font-size: 14px;
  opacity: 1; /* Firefox */
  color: #6b7280;
}
.form-control-common::placeholder {
  font-size: 14px;
  opacity: 1; /* Firefox */
  color: #6b7280;
}
.form-control-common option {
  font-size: 14px;
}

.form-control-select {
  font-size: 14px;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.input-group {
  border: 1px solid rgba(49, 121, 90, 0.3);
  background: rgba(49, 121, 90, 0.1);
  border-radius: 10px;
  max-height: 50px;
}
@media screen and (max-width: 768px) {
  .input-group {
    border: none;
  }
}

.form-label {
  color: #6b7280;
  font-size: 14px;
}

.search-input {
  border: none !important;
}

.input-group > .form-control-common {
  background: transparent;
}

.input-group > .form-control,
.input-group > .input-group-text {
  border: none;
}

.input-group > .input-group-text {
  background: rgba(49, 121, 90, 0.1);
  background-color: transparent;
}

.iti__selected-country {
  padding-right: 8px !important;
  border-right: 1px solid rgba(49, 121, 90, 0.3) !important;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
  border-color: #145455;
  background-color: rgba(49, 121, 90, 0.1);
  box-shadow: none;
  outline: 0 none;
}

select:focus {
  border-color: #145455 !important;
  background-color: rgba(49, 121, 90, 0.1) !important;
  box-shadow: none !important;
  outline: 0 none !important;
}

.form-check-input:checked {
  background-color: #145455;
  border-color: #145455;
}

.form-check-input:focus {
  box-shadow: none;
}

.helper-text {
  color: #ff3333;
}

.datepicker-input-container {
  position: relative;
  display: inline-block;
}
.datepicker-input-container svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
  fill: #555;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  min-height: 60px;
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column-reverse;
    height: -moz-fit-content;
    height: fit-content;
    gap: 16px;
  }
}
.footer-container .footer-left-container {
  color: #717171;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .footer-container .footer-left-container {
    margin-bottom: 16px;
  }
}
.footer-container .footer-right-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer-container .footer-right-container {
    margin-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  .footer-container .footer-right-container {
    flex-direction: column;
    gap: 4px;
  }
}
.footer-container .footer-right-container .footer-link {
  color: #717171;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  cursor: pointer;
}

.main-container {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  gap: 16px;
  position: relative;
}
.main-container .forget-password-form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 64px;
}
@media screen and (max-width: 1024px) {
  .main-container .forget-password-form-container {
    max-width: 80%;
    margin: 0 auto;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .main-container .forget-password-form-container {
    max-width: 90%;
    padding: 32px;
  }
}
@media screen and (max-width: 480px) {
  .main-container .forget-password-form-container {
    gap: 24px;
    max-width: 100%;
    padding: 48px 16px 16px 16px;
  }
}
.main-container .forget-password-form-container div {
  box-sizing: border-box;
}
.main-container .forget-password-form-container .forget-password-header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .main-container .forget-password-form-container .forget-password-header-container {
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .main-container .forget-password-form-container .forget-password-header-container .logo-img {
    height: 64px;
  }
}
.main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-title {
  color: #111827;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 60%;
}
@media screen and (max-width: 1441px) {
  .main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-title {
    width: 70% !important;
  }
}
@media screen and (max-width: 1367px) {
  .main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-title {
    width: 80% !important;
  }
}
@media screen and (max-width: 480px) {
  .main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-title {
    font-size: 32px;
    width: 100% !important;
  }
}
.main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-description {
  color: #244034;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 70%;
}
@media screen and (max-width: 1367px) {
  .main-container .forget-password-form-container .forget-password-header-container .forget-password-header-text-container .forget-password-header-description {
    width: 80% !important;
  }
}
.main-container .forget-password-form-container .form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 80%;
}
@media screen and (max-width: 1441px) {
  .main-container .forget-password-form-container .form-wrapper {
    width: 100%;
  }
}
.main-container .forget-password-form-container .form-wrapper p {
  margin: 0;
}
.main-container .forget-password-form-container .form-wrapper .input-container {
  width: 100%;
}
.main-container .forget-password-form-container .form-wrapper .form-footer {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-container .forget-password-form-container .form-wrapper .form-footer .primary-button-dark {
  width: 100%;
  min-height: 50px !important;
  max-height: 50px !important;
  background: linear-gradient(91deg, #145455 0.46%, #1e6f6e 100%);
}
.main-container .forget-password-form-container .form-wrapper .form-footer .login {
  color: #145455;
  text-decoration: underline;
}
.user-pass .container .form-footer {
  color: #145455;
  text-decoration: underline;
  margin-top: 0.8rem;
}
.main-container .button-outside-form {
  width: 80%;
}
.main-container .forget-password-banner-container {
  flex: 1;
  padding: 16px;
}
@media screen and (max-width: 1024px) {
  .main-container .forget-password-banner-container {
    display: none;
  }
}
.main-container .forget-password-banner-container .forget-password-banner-content {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 30.59%, #0e0d0d 99.96%), url(../../images/bg-one-login.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container {
  width: 62% !important;
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1441px) {
  .main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container {
    width: 65% !important;
  }
}
@media screen and (max-width: 1367px) {
  .main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container {
    width: 70% !important;
  }
}
@media screen and (max-width: 1200px) {
  .main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container {
    width: 75% !important;
    top: 68%;
  }
}
.main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container .banner-description,
.main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container .free-trial-text {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container .banner-description {
  font-size: 32px;
}
@media screen and (max-width: 1441px) {
  .main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container .banner-description {
    font-size: 28px;
  }
}
.main-container .forget-password-banner-container .forget-password-banner-content .banner-content-container .free-trial-text {
  font-size: 16px;
  text-decoration: underline;
}
.main-container .forget-password-banner-container-mobile {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px 0;
  background: linear-gradient(91deg, #01191a 0.46%, #002221 100%);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .main-container .forget-password-banner-container-mobile {
    display: none;
  }
}
.main-container .forget-password-banner-container-mobile .banner-description-mobile {
  color: #fff;
  text-align: center;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .main-container .forget-password-banner-container-mobile .banner-description-mobile {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .main-container .forget-password-banner-container-mobile .banner-description-mobile {
    width: 80%;
  }
}
.main-container .forget-password-banner-container-mobile .primary-button {
  width: 340px;
}

:root {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

html,
body {
  max-width: 100vw;
  max-height: 100vh;
  height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

.dark {
  background: #1d2939;
}

.light {
  background: #f9fafb;
}

li::marker {
  color: #98a2b3;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgb(204, 204, 204);
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(196, 196, 196);
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(196, 196, 196);
}

.primary-button-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #145455;
  min-width: 216px;
  min-height: 50px;
  max-height: 50px;
  border: none;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .primary-button-dark {
    min-width: 170px;
  }
}
@media screen and (max-width: 480px) {
  .primary-button-dark {
    min-width: 150px;
    min-height: 40px;
    max-height: 40px;
  }
}

.primary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #c9f153;
  min-width: 216px;
  min-height: 50px;
  max-height: 50px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .primary-button {
    min-width: 170px;
  }
}
@media screen and (max-width: 480px) {
  .primary-button {
    min-width: 150px;
    min-height: 40px;
    max-height: 40px;
  }
}

.default-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: rgba(240, 245, 243, 0.2);
  min-width: 216px;
  min-height: 50px;
  max-height: 50px;
  border: none;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .default-button {
    min-width: 170px;
  }
}
@media screen and (max-width: 480px) {
  .default-button {
    min-width: 150px;
    min-height: 40px;
    max-height: 40px;
  }
}

.input-group {
  margin-bottom: 0px !important;
}

.card-article-container {
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-article-container p {
  margin: 0;
}
.card-article-container .card-header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.card-article-container .card-header-container .card-header-left-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-article-container .card-header-container .card-header-left-container .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: #1f2937;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .card-article-container .card-header-container .card-header-left-container .card-title {
    font-size: 16px;
  }
}
.card-article-container .card-header-container .card-header-left-container .card-date {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 85.714%;
  color: #6b7280;
}
.card-article-container .card-header-container .bookmark-svg {
  cursor: pointer;
}
.card-article-container .card-description {
  width: 75%;
  color: #4b5563;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: height 0.3s;
  height: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .card-article-container .card-description {
    width: 100%;
  }
}
.card-article-container .attachments-files-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.card-article-container .attachments-files-container .attachments-files-title {
  color: #111827;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.card-article-container .attachments-files-container .attachments-file-container {
  display: flex;
  padding: 6px 12px 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  border: 1px solid #9ca3af;
  background: #fff;
}
.card-article-container .attachments-files-container .attachments-file-container .file-name {
  color: #4b5563;
  font-family: Cairo;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.card-article-container .card-footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-article-container .card-footer-container .card-footer-left-container {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.card-article-container .card-footer-container .card-footer-left-container .category-ship-container {
  padding: 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  background: #f3f4f6;
}
.card-article-container .card-footer-container .card-footer-left-container .category-ship-container .category-name {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 100%;
}
.card-article-container .card-footer-container .card-footer-left-container .category-ship-active {
  border: 1px solid #c9f153;
  background: rgba(201, 241, 83, 0.1);
}
.card-article-container .card-footer-container .show-more-button {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid var(--neutral-neutral-200, #e5e7eb);
  background: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  color: #111827;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}
.card-article-container .card-footer-container .show-more-button:hover {
  background: #f3f4f6;
}
.card-article-container .card-footer-container .show-more-button p {
  margin: 0;
}
.card-article-container .card-footer-container .show-more-button svg {
  transition: all 0.4s;
}
/* my css */
.user-pass {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  justify-content: center;
  align-items: center;
  margin: auto;
  
}
.input-container .form-item .form-email {
  /* display: block; */
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(49, 121, 90, 0.3);
  background: rgba(49, 121, 90, 0.1);
}
.user-pass .form-footer {
  width: 100%;
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}
.user-pass .form-footer a {
  color: #145455;
  text-decoration: underline;
}
.form-footer .form-submit {
  padding: 0.375rem 0.75rem;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: block;
  width: 100%;
  min-height: 50px !important;
  max-height: 50px !important;
  background: linear-gradient(91deg, #145455 0.46%, #1e6f6e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #145455;
  min-width: 216px;
  min-height: 50px;
  max-height: 50px;
  border: none;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.user-pass .input-container .form-type-email label {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 0.5rem
}
@media screen and (max-width: 768px) {
  .card-article-container .card-footer-container .show-more-button .show-more-button-text {
    display: none;
  }
}

p {
  margin: 0;
}/*# sourceMappingURL=forget-password.css.map */