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

body {
  font-family:
    Roboto,
    -apple-system,
    Helvetica,
    sans-serif;
  background-color: #f2f2f2;
}

.login-container {
  background-color: #f2f2f2;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
}

/* Header Section */
.login-header {
  align-self: start;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.header-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 34px;
  flex-shrink: 0;
}

.header-icon-secondary {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 31px;
  align-self: start;
  flex-shrink: 0;
}

/* Main Content Section */
.login-content {
  border-radius: 100px;
  background-color: #d8d8d8;
  display: flex;
  margin-top: 76px;
  width: 100%;
  padding: 116px 48px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Roboto,
    -apple-system,
    Helvetica,
    sans-serif;
  font-size: 18px;
  color: #3f3d56;
  font-weight: 700;
}

.welcome-heading {
  font-size: 36px;
  text-align: center;
  align-self: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-field {
  background-color: #f4f1ba;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 12px;
  align-items: stretch;
  white-space: nowrap;
  text-align: center;
}

.form-field:first-of-type {
  margin-top: 50px;
  gap: 52px;
}

.form-field:nth-of-type(2) {
  margin-top: 39px;
  padding: 10px 12px;
  gap: 9px;
}

.password-label {
  flex-grow: 1;
}

.field-value {
  flex-grow: 1;
  flex-shrink: 1;
  text-align: center;
}

.field-value.password-value {
  width: 171px;
}

.login-illustration {
  aspect-ratio: 1.67;
  object-fit: contain;
  object-position: center;
  width: 274px;
  align-self: center;
  margin-top: 67px;
  max-width: 100%;
}

.login-button {
  border: none;
  border-radius: 15px;
  background-color: #698bcf;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: -22px;
  padding: 8px 70px;
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  align-self: center;
}

/* Footer Section */
.login-footer {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: center;
  z-index: 10;
  aspect-ratio: 1.142;
  margin-top: -40px;
  width: 137px;
  max-width: 100%;
  padding: 49px 9px;
  font-family:
    Roboto,
    -apple-system,
    Helvetica,
    sans-serif;
  font-size: 30px;
  color: #3f3d56;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}

.footer-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-name {
  position: relative;
  z-index: 1;
}

.app-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: rgba(63, 61, 86, 0.41);
  opacity: 0.45;
  margin-top: 20px;
}
