* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #2d74b4;
  color: #333333;
  font-family: "Helvetica Neue", "SF Pro Display", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #2d74b4;
}

.logo-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0px;
  margin-bottom: 0px;
  margin-top: 20px;
}

.logo-area img {
  display: block;
  width: 209px;
  height: 80px;
  margin-bottom: 20px;
}

.card {
  width: 1170px;
  min-height: 404px;
  display: grid;
  grid-template-columns: 525px 525px;
  column-gap: 0px;
  justify-content: center;
  padding: 76px 48px;
  padding-bottom: 90px;
  background: #eeeeee;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.column {
  width: 525px;
}

.login-column{
  padding-left: 15px;
  padding-right: 18px;
}

.help-column{
  padding-left: 18px;
  padding-right: 15px;
}

h1,
h2 {
  margin: 0 0 12px;
  color: black;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.description {
  margin: 0;
  color:  black;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}

form {
  margin-top: 32px;
}

label {
  display: block;
  margin: 0 0 6px;
  color: black;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

input[type="text"],
input[type="password"] {
  display: block;
  width: 100%;
  height: 34px;
  margin: 0 0 15px;
  padding: 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
  color: black;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #2d74b4;
  outline: 1px solid #2d74b4;
}

.login-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  background: #f6f9f8;
  color: #434c50;
  font-size: 14px;
  line-height: 38px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.help-buttons {
  margin-top: 24px;
}

.help-buttons button {
  display: block;
  width: 100%;
  height: 42px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #3b7cb3;
  color: #ffffff;
  font-size: 14px;
  line-height: 42px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

.help-buttons button:last-child {
  margin-bottom: 0;
}

.help-buttons button:hover {
  background: #336da0;
}

.footer {
  width: 970px;
  margin: 30px 0 24px;
  text-align: center;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: white;
}

.footer p {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 1024px){
  .card {
  width: 970px;
  min-height: 404px;
  display: grid;
  grid-template-columns: 440px 440px;
  column-gap: 0px;
  justify-content: center;
  padding: 76px 48px;
  padding-bottom: 90px;
  background: #eeeeee;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .column {
  width: 415px;
  padding-left: 30px;
  }

.help-column{
  padding-left: 10px;
  }

}

@media (min-width: 768px) and (max-width: 1020px) {
  .logo-area {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  .logo-area img {
    width: 209px;
    height: 80px;
  }

  .card {
    width: 740px;
    min-height: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 48px 60px;
    padding-bottom: 90px;
  }

  .column {
    width: 100%;
  }

  h1,
  h2 {
    margin-bottom: 10px;
    font-size: 24px;
    margin-top: 15px;
  }

  .description {
    line-height: 1.4;
  }

  form {
    margin-top: 24px;
  }

  input[type="text"],
  input[type="password"] {
    margin-bottom: 16px;
  }

  .login-column {
    margin-bottom: 25px;
  }

  .help-buttons {
    margin-top: 20px;
  }

  .footer {
    width: 720px;
    margin-top: 32px;
  }

  .footer-line {
    background: white;
  }

  .footer p {
    font-size: 14px;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  body,
  .page {
    background: #f3f4f6;
  }

  .logo-area {
    height: 112px;
    padding-top: 16px;
    margin-bottom: 0;
    background: #2d74b4;
    margin-top: 0px;
  }

  .logo-area img { 
    width: 208px;
  }

  .card {
    width: 100%;
    min-height: 0;
    display: block;
    padding: 24px 30px;
    padding-top: 50px;
    border-radius: 0;
    box-shadow: none;
  }

  .column {
    width: 100%;
    padding-left: 0px;
  }

  h1,
  h2 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  form {
    margin-top: 20px;
  }

  input[type="text"],
  input[type="password"] {
    height: 38px;
    margin-bottom: 14px;
    line-height: 38px;
  }

  .login-button {
    height: 38px;
    font-size: 14px;
    line-height: 36px;
  }

  .login-column {
    margin-bottom: 32px;
  }

  .help-buttons {
    margin-top: 18px;
  }

  .help-buttons button {
    height: 42px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 40px;
  }

  .footer {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 0px;
    padding: 0 20px;
    height:100px;
    background: #2d74b4;
  }

  .footer-line {
    background: #e5e7eb;
    margin-top: 30px;
  }

  .footer p {
    margin-top: 12px;
    color: white;
    font-size: 14px;
  }
}