* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

body {
  min-height: 100dvh;
  background-image: url(../images/desktop-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: center;
}

main {
  width: 100%;
  max-width: 638px;
  margin: 0 auto;
  padding: 10px;
}

.white_paper {
  border-radius: 5px;
  background-color: #fff;
}

.white_paper header div {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 10px;
  margin-top: 20px;
  border-bottom: 1px solid;
  border-color: #4d4d4d;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white_paper .logo_container img {
  width: 247px;
}

.container {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.container form {
  margin: 0 auto;
  width: 100%;
  max-width: 364px;
  color: #262626;
  text-align: left;
}

.form_group {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  position: relative;
}

.form_group label {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

.flex_group {
  display: flex;
  gap: 15px;
}

.pin_form {
  width: 100%;
  max-width: 364px;
  height: 350px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pin_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pin_form .button_group {
  width: 100%;
}

.pin_form label {
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 16px;
}

.pin_form p {
  font-size: 14px;
  font-weight: 500;
  color: #434343;
}

.pin_inputs {
  display: flex;
  gap: 12px;
}

.pin_input {
  width: 40px;
  height: 40px;
  border: 1px solid #4d4d4d;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #262626;
  background: #fff;
}

.pin_input:focus {
  outline: 2px solid rgba(0, 71, 95, 0.3);
  outline-offset: 2px;
}

.rem_me label {
  font-size: 13px;
}

.form_group input {
  height: 44px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #4d4d4d;
  transition: all 0.3s ease;
  width: 100%;
}

.form_group input:focus {
  outline-offset: 2px;
}

.form_group span {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 12px;
  padding: 5px 10px;
  cursor: pointer;
  color: #29689b;
}

.form_group span.error_text {
  position: relative;
  color: #f71e0f;
  font-size: 13px;
  display: none;
  top: 0;
}

.form_group.error span.error_text {
  display: block;
}

.form_group.error input {
  border: 2px solid #f71e0f;
}

.rem_me {
  padding-top: 22px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.rem_me input {
  width: 20px;
  height: 20px;
}

.button_group {
  margin-bottom: 36px;
  margin-top: 15px;
}

.button_group button {
  padding: 10px;
  width: 100%;
  background-color: #00475f;
  border: 1px solid #00475f;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.button_group button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.bottom_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

.bottom_links a {
  color: #00475f;
  font-size: 14px;
}

footer {
  background-color: #00475f;
  border-radius: 0 0 5px 5px;
}

footer ul {
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin: 0 auto 20px;
  padding: 16px 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

footer ul li.divider {
  width: 1px;
  height: 15px;
  background-color: #fff;
}

footer ul li,
footer ul li a {
  display: flex;
  align-items: center;
}

footer ul li a {
  color: #fff;
  font-size: 12px;
  padding: 0 24px;
  text-wrap: unset;
  line-height: 34px;
}

.bottom_logo {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .logo_container img {
    height: 45px;
    width: 156px !important;
  }

  .white_paper header div {
    height: 60px;
  }
}
