body {
  background: linear-gradient(120deg, #65a6f6 0%, #859ffd 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.login-container {
  background: #fff;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-container h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #333;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.25rem;
}

input[type='email'] {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

input[type='email']:focus {
  border: 1.5px solid #fda085;
}

button[type='submit'],
#google-signin-btn {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #65def6 0%, #85f5fd 100%);
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(253, 160, 133, 0.08);
}

button[type='submit']:hover,
#google-signin-btn:hover {
  background: linear-gradient(90deg, #fda085 0%, #f6d365 100%);
}

.divider {
  margin: 1.5rem 0 1rem 0;
  width: 100%;
  text-align: center;
  color: #aaa;
  position: relative;
}

.divider:before,
.divider:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #eee;
}

.divider:before {
  left: 0;
}

.divider:after {
  right: 0;
}

#google-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #444;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.08);
}

#google-signin-btn img {
  width: 22px;
  height: 22px;
}

#message {
  margin-top: 1.25rem;
  color: #d9534f;
  min-height: 1.5em;
  text-align: center;
}
