/* ═══════════════════════════════════════════════════════════════
   LOGIN STYLES
   ═══════════════════════════════════════════════════════════════ */

#loginMain {
  max-width: 640px;
}

#loginMain form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#loginMain input,
#loginMain button:not(.google-btn) {
  width: 100%;
  max-width: 300px;
}

/* ——— Google Sign-In Button ——— */
.google-btn-container {
  margin-top: 20px;
  text-align: center;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #3c4043;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  padding: 0 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 300px;
  gap: 12px;
  box-sizing: border-box;
}

.google-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  border-color: #d2d2d2;
}

.google-btn:active {
  background-color: #f1f3f4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.google-text {
  flex: 1;
  text-align: center;
}