.login-phone {
  display: grid;
  place-items: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--maui-bg-start), var(--maui-bg-end));
}

.login-content {
  width: 100%;
}

.logo-card {
  width: fit-content;
  margin: 0 auto 30px;
  padding: 30px 50px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 42px;
  font-weight: 800;
}

.logo-card span:nth-child(2) {
  color: var(--maui-yellow);
}

.welcome-text {
  margin-bottom: 34px;
  text-align: center;
}

.welcome-text h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.welcome-text p,
.google-area p {
  margin: 0;
  color: var(--maui-muted);
}

.login-form {
  display: grid;
  gap: 15px;
}

.input-pill {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--maui-line);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.input-pill span {
  color: var(--maui-soft);
  font-weight: 800;
}

.input-pill input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--maui-ink);
  background: transparent;
  font-size: 16px;
}

.login-form button,
.guest-button {
  height: 50px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 800;
}

.login-form button {
  margin-top: 10px;
  border: 0;
  background: var(--maui-yellow);
  color: #ffffff;
}

.login-form a {
  color: var(--maui-coral);
  text-align: center;
  text-decoration: underline;
}

.separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  margin: 26px 0;
  color: var(--maui-muted);
}

.separator span {
  height: 1px;
  background: rgba(232, 197, 71, 0.6);
}

.google-area {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.google-area button {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--maui-line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.google-area img {
  width: 30px;
  height: 30px;
}

.google-area strong {
  color: var(--maui-coral);
  text-decoration: underline;
}

.guest-button {
  width: 100%;
  margin-top: 22px;
  border: 2px solid var(--maui-yellow);
  background: transparent;
  color: var(--maui-muted);
}
