.profile-auth-welcome {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 17px;
  padding: 24px 20px 20px;
  border: 1px solid #dce6e9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(27, 57, 70, .07);
}

#profileAccountMenu[hidden] {
  display: none !important;
}

.profile-auth-heading .eyebrow {
  color: var(--mc-cyan-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.profile-auth-heading h2 {
  margin: 8px 0 7px;
  font-size: 24px;
  line-height: 1.15;
}

.profile-auth-heading p,
.profile-guest-note {
  margin: 0;
  color: var(--mc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.profile-login-form {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.profile-login-form > label:not(.profile-remember) {
  display: grid;
  gap: 7px;
  color: #34414a;
  font-size: 12px;
  font-weight: 800;
  min-width: 0;
}

.profile-login-form input[type="email"],
.profile-password-field {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  border: 1px solid #cbd8dd;
  border-radius: 12px;
  background: #fff;
}

.profile-login-form input[type="email"],
.profile-password-field input {
  padding: 0 13px;
  color: var(--mc-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.profile-login-form input[type="email"]:focus,
.profile-password-field:focus-within {
  outline: none;
  border-color: var(--mc-cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 207, .12);
}

.profile-password-field {
  display: flex;
  align-items: center;
}

.profile-password-field input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
}

.profile-password-toggle {
  border: 0;
  background: transparent;
  color: var(--mc-cyan-dark);
  padding: 10px 13px;
  font-weight: 800;
}

.profile-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f5e68;
  font-size: 12px;
}

.profile-auth-submit,
.profile-register {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  cursor: pointer;
}

.profile-auth-submit {
  background: var(--mc-cyan);
  color: #fff;
}

.profile-auth-actions {
  display: grid;
  gap: 10px;
  text-align: center;
}

.profile-register {
  display: grid;
  place-items: center;
  border: 1px solid var(--mc-cyan);
  color: var(--mc-cyan-dark);
  text-decoration: none;
}

.profile-recover {
  color: var(--mc-cyan-dark);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.profile-guest-note {
  padding-top: 2px;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 360px) {
  .profile-auth-welcome { padding: 20px 16px 17px; }
  .profile-auth-heading h2 { font-size: 21px; }
}
