:root {
   /* COLORS */
  --color_white: #ffffff;
  --color_black: #1B1B1B;
  --color_grey: #6e6e6e;

  --color_accent-yellow: #FFF083;
  --color_accent-blue: #C9F5FF;
  --color_accent-pink: #F4C9FF;
  --color_accent-green: #EAFFC9;
  --color_accent-orange: #FFE3C9;

  /* BUTTONS */
  --button_height: 56px;
  --button_radius: 30px;

  /* PAGE */
  --page_width: 393px;
  --content_width: 309px;
  --image_width: 255px;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--color_white);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color_black);
}

.auth_page {
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
}

.auth_card {
  width: 100%;
  max-width: var(--page_width);
  min-height: 852px;
  padding: 120px 42px 0 42px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.hero_image {
  width: var(--image_width);
  display: block;
  margin: 0 auto 42px auto;
}


h1 {  
  color: #2C2C2C;
  text-align: center;
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: 35px;
  font-style: normal;
  line-height: 50px; 
  color: var(--color_black);
}

h2 {  
  text-align: center;
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: 24px;
  font-style: normal;
  line-height: 24px; /* 140% */
  color: var(--color_black);
}

/* Robto basic class<weight>: Use a value from 100 to 900 */
p {
  color: #2C2C2C;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  font-optical-sizing: auto;
  line-height: 14px;
  color: var(--color_grey);
}

.subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color_grey);
  margin-bottom: 20px;
}

.button_group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.btn {
  width: 100%;
  height: var(--button_height);

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: var(--button_radius);

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.btn_outline {
  background-color: #ffffff;
  color: var(--color_black);
  border: 1px solid var(--color_black);
}

.btn_primary {
  background-color: var(--color_black);
  color: var(--color_white);
  border: 1px solid var(--color_black);
}

.login_card {
  padding-top: 120px;
}

.form_area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 47px;
}

.form_input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--color_black);
  border-radius: var(--button_radius);
  padding-left: 16px;
  padding-right: 16px;

  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;

  color: var(--color_text);
  background-color: var(--color_white);
  outline: none;
}

.form_input::placeholder {
  color: #9ca3af;
}

.form_input:focus {
  border: 2px solid var(--color_black);
}

.form_area .btn {
  border: none;
  cursor: pointer;
}

.form_message {
  min-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #c0392b;
}

.register_hint {
  margin-top: -8px;

  font-size: 12px;
  line-height: 18px;

  color: var(--color_grey);
  text-decoration: none;
}

.register_hint:hover {
  text-decoration: underline;
}

.register_card {
  padding-top: 120px;
}