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

body {
  font-family: 'Google Sans', Arial, sans-serif;
  background: #111;
  color: #e8eaed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 24px 24px;
}

.g-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
}

h1 {
  font-size: 30px;
  font-weight: 400;
  color: #e8eaed;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 15px;
  color: #9aa0a6;
  margin-bottom: 6px;
}

.meal-text {
  font-size: 14px;
  color: #9aa0a6;
  margin-bottom: 20px;
}

/* Sign in with row */
.signin-with {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.signin-with span {
  font-size: 14px;
  color: #9aa0a6;
  white-space: nowrap;
}
.signin-with img {
  height: 36px;
  border-radius: 8px;
}

.input-group {
  width: 100%;
  margin-bottom: 6px;
}
.input-group input {
  width: 100%;
  padding: 16px 14px;
  border: 1px solid #5f6368;
  border-radius: 6px;
  font-size: 16px;
  color: #e8eaed;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.input-group input:focus { border-color: #8ab4f8; }
.input-group input::placeholder { color: #9aa0a6; }

.forgot {
  font-size: 14px;
  color: #8ab4f8;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 28px;
}
.forgot:hover { text-decoration: underline; }

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.create-account {
  font-size: 14px;
  color: #8ab4f8;
  text-decoration: none;
}
.create-account:hover { text-decoration: underline; }

.btn-next {
  background: #aecbfa;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-next:hover { background: #c5d8fc; }
