body {
  margin: 0;
}

a {
  text-decoration: none;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  border: none;
  outline: inherit;
}

.login-container {
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  height: 100vh;
  width: 100%;
}

.header {
  display: flex;
  height: 78px;
  padding-bottom: 4px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  background: white;
}

.header-content {
  display: flex;
  min-width: 240px;
  height: 74px;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  flex: 1;
}

.header-sections {
  display: flex;
  min-height: 74px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 16px;

}

.left-section {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 16px;
  color: #21252c;
  text-transform: uppercase;
  margin: auto 0;
  font: 300 16px/1 "Open Sans", sans-serif;
}

.logo {
  width: 128px;
  height: 63px;
}

.product-name {
  color: var(--Neutral-Colors-Cool-Grey-Cool-Grey-15, #21252C);
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
}

.central-section {
  display: flex;
  min-height: 48px;
  min-width: 240px;
  margin: auto 0;
}

.logo-m {
  display: none;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: start;
  width: 160px;
  margin: auto 0;
}

.user-icon {
  width: 34.667px;
  height: 34.667px;
  flex-shrink: 0;
}

/* langdropdown */
.language-section {
  display: flex;
  flex-direction: column;
  padding: 6px 10px 6px 16px;
  align-items: center;
  gap: 2px;
  font-family: 'Open Sans';
}

.language-select-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  cursor: pointer;

  &:focus {
    background-color: #eceff1;
    box-shadow: 0 0 0 2.01px #fff, 0 0 0 4.01px #00e5ff !important;
  }

  &:hover {
    background-color: #eceff1;
  }
}


.language-select-item {
  display: flex;
  align-items: center;
  gap: 35px;
  font-family: 'Open Sans';
  align-self: stretch;
  font-feature-settings:
    'liga' off,
    'clig' off;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  border-radius: 4px;


  &:hover {
    background-color: var(--epods--color-bg-visited);
    border: 1px solid var(--epods--color-border-active);
  }
}

.language-select-item span {
  margin-left: 26px;
}

.language-select-item-active span {
  margin-left: 0px;
}

.language-select-item-active {
  color: #c1371b !important;
  margin-left: 0px;
  gap: 12px;
}


.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0px;
}


.dropdown-content {
  display: none;
  position: absolute;
  padding: 8px;
  right: 0;
  margin-top: 5px;
  background-color: white;
  min-width: 240px;
  overflow: auto;
  border-radius: 6px;
  border: 1px solid var(--Neutral-Colors-Cool-Grey-Cool-Grey-87, #d9dde3);
  background: var(--Neutral-Colors-White, #fff);
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #eceff1;
  border: 1px solid #677589;
}

.show {
  display: block;
}

.bottom-line {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.nav-line {
  background: #404955;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
}

.nav-highlight {
  background: #d93317;
  width: 80px;
  height: 4px;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  flex: 1;
}

.login-form {
  display: flex;

  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 31px;
  color: #000;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.58px;
}

.form-title {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 31px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.58px;
}

.input-wrapper {
  width: 300px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.email-label {
  color: var(--Neutral-Colors-Cool-Grey-Cool-Grey-15, #21252C);
  font-feature-settings: 'liga' off, 'clig' off;

  /* Small-Text/Dark */
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.email-input {
  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Neutral-Colors-Cool-Grey-Cool-Grey-73, #B0B9C4);
  background: var(--Neutral-Colors-White, #FFF);
}

.email-input-error {
  border-radius: 4px;
  border: 2px solid var(--Utility-Colors-Error, #DD654B);
  background: var(--Utility-Colors-Error-Background, #F9EBE9);
}

.error-message-container {
  display: none;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.error-message {
  color: var(--Utility-Colors-Error-Text, #C1371B);
  font-feature-settings: 'liga' off, 'clig' off;

  /* Tiny-Text/Dark */
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
}

.form-actions {
  display: flex;
  margin-top: 20px;
  width: 100%;
  max-width: 384px;
  flex-direction: column;
  justify-content: start;
}

.button-wrapper {

  display: flex;
  width: 100%;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  justify-content: center;
}

.login-button {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: #0262ca;
  width: 140px;
  max-width: 100%;
  gap: 10px;
  color: #fff;
  cursor: pointer;
}

.login-button:disabled {
  background-color: #bbdefb;

  cursor: not-allowed;

}

.footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: #fff;
  font: 600 12px "Open Sans", sans-serif;
}

.footer-content {
  justify-content: center;
  background: #404955;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 16px 0;
}

.footer-links {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Media Queries */
@media (max-width: 991px) {

  .header,
  .header-content,
  .header-sections,
  .central-section,
  .bottom-line,
  .main-content,
  .footer,
  .footer-content {
    max-width: 100%;
  }

  .logo,
  .product-name {
    display: none;
  }

  .logo-m {
    display: block;
  }

  .email-input,
  .input-wrapper {
    white-space: initial;
  }

  .footer-content {
    padding: 16px;
  }

  .footer-links {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}