body {
  margin: 0;
  min-height: 100vh;
  display: block;
  padding: 32px 20px;
  background:
    radial-gradient(circle at top, rgba(17, 93, 252, 0.12), transparent 26%),
    #f6f7fb;
  font-family: Arial, sans-serif;
}

.login-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.form_container {
  width: min(100%, 400px);
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 44px 34px 20px;
  background-color: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow:
    0 106px 42px rgba(0, 0, 0, 0.01),
    0 59px 36px rgba(0, 0, 0, 0.05),
    0 26px 26px rgba(0, 0, 0, 0.09),
    0 7px 15px rgba(0, 0, 0, 0.1),
    0 0 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.logo_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo_mark {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
}

.subtitle {
  font-size: 0.78rem;
  max-width: 32ch;
  text-align: center;
  line-height: 1.2rem;
  color: #8b8e98;
}

.input_container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.icon {
  width: 20px;
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 10px;
}

.input_label {
  font-size: 0.75rem;
  color: #8b8e98;
  font-weight: 600;
}

.input_field {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 40px;
  border-radius: 8px;
  outline: none;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  filter: drop-shadow(0 1px 0 #efefef) drop-shadow(0 1px 0.5px rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_field:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #242424;
  background-color: transparent;
}

.feedback_text {
  width: 100%;
  min-height: 18px;
  font-size: 0.78rem;
  color: #cf3f3f;
  text-align: center;
}

.sign-in_btn,
.sign-in_ggl,
.sign-in_apl {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  font-size: 0.92rem;
}

.sign-in_btn {
  border: 0;
  background: #115dfc;
  color: #ffffff;
}

.sign-in_ggl {
  background: #ffffff;
  color: #242424;
  border: 1px solid #e5e5e5;
  filter: drop-shadow(0 1px 0 #efefef) drop-shadow(0 1px 0.5px rgba(239, 239, 239, 0.5));
}

.sign-in_apl {
  background: #212121;
  color: #ffffff;
  border: 1px solid #212121;
}

.separator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #8b8e98;
  font-size: 0.82rem;
}

.separator .line {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #e8e8e8;
}

.form_meta {
  width: 100%;
  margin-top: 4px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.back_link,
.note {
  font-size: 0.75rem;
  color: #8b8e98;
  text-decoration: underline;
}

@media (max-width: 480px) {
  body {
    padding: 24px 16px;
  }

  .login-shell {
    padding-top: 0;
  }

  .form_container {
    width: min(100%, 360px);
    padding: 32px 20px 18px;
    border-radius: 18px;
  }
}
