@import url("/css/variables.css");

@font-face {
  font-family: Harlekin;
  src: url("/fonts/Harlekin.ttf");
}

.main {
  flex-wrap: nowrap;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 18px 32px;
}

.header .header-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.header .header-logo img {
  width: 32px;
  height: 32px;
}

.header .header-logo span {
  color: var(--foundation-white-white-800, #878787);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.header .header-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}

.header .header-buttons .header-btn {
  cursor: pointer;
  color: var(--foundation-white-white-800, #878787);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.content .content-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0054a5;
  width: 45%;
  color: #ffffff;
  font-size: 3vw;
  line-height: 4.5vw;
  font-family: Inter sans-serif;
}

.content .content-info .content-italic {
  font-family: Harlekin;
  font-size: 5vw;
  line-height: 5.5vw;
}

.content .content-info .content-lg {
  font-size: 3.5vw;
  line-height: 4.5vw;
}

.content .content-info .content-bold {
  font-weight: 700;
}

.content .content-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  flex: 1 1 auto;
}

.content .content-form .form {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  min-width: 85%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 32px;
}

.content .content-form .form .form-header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: center;
}

.content .content-form .form .form-header .form-logo {
  width: 233px;
  height: 85px;
}

.content .content-form .form .form-header .form-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.content .content-form .form .form-header .form-title .form-heading {
  color: var(--foundation-black-black-700, #171717);
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}

.content .content-form .form .form-header .form-title .form-description {
  color: var(--foundation-white-white-800, #878787);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.content .content-form .form .form-link,
.content .content-form .form .form-btn {
  cursor: pointer;
}

.content .content-form .form .form-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
}

.content .content-form .form .form-content .form-items {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
}

.content .content-form .form .form-content .form-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
}

.content .content-form .form .form-content .form-item span {
  color: var(--foundation-black-black-500, #212121);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.content .content-form .form .form-content .form-item input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--foundation-white-white-600, #dfdfdf);
  background: var(--foundation-white-white-50, #fefefe);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--foundation-white-white-800, #878787);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  outline: none;
}

.content .content-form .form .form-content .form-extras {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.content .content-form .form .form-content .form-extras .remember-me {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.content .content-form .form .form-content .form-extras .remember-me input {
  width: 16px;
  height: 16px;
  outline: none;
}

.content .content-form .form .form-content .form-extras .remember-me span {
  color: var(--foundation-black-black-500, #212121);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.content .content-form .form .form-content .form-extras .forget {
  color: var(--foundation-blue-blue-700, #003c75);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.content .content-form .form .form-content .form-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}

.content .content-form .form .form-content .form-buttons .form-btn {
  padding: 10px 18px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.content .content-form .form .form-content .form-buttons .login-btn {
  border: 1px solid var(--foundation-blue-blue-700, #003c75);
  background: var(--foundation-blue-blue-700, #003c75);
  color: var(--foundation-white-white-50, #fefefe);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
