body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
}

.auth-container {
  max-width: 400px;
  margin: 60px auto;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title {
  color: #333;
  text-align: center;
  margin-bottom: 24px;
}

.error-message {
  background-color: #ffebee;
  color: #c62828;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #ef9a9a;
  font-size: 14px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}

.form-group input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.auth-button {
  padding: 12px;
  background-color: #2196f3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}

.auth-button:hover {
  background-color: #1976d2;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.auth-divider span {
  padding: 0 12px;
  color: #999;
  font-size: 14px;
}

.google-button {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.google-button:hover {
  background-color: #f5f5f5;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  color: #666;
  font-size: 14px;
}

.auth-link a {
  color: #2196f3;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

.verify-description {
  color: #555;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.verification-code-input {
  text-align: center;
  font-size: 24px;
  letter-spacing: 8px;
  font-weight: 600;
}

.success-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #a5d6a7;
  font-size: 14px;
}

.resend-section {
  text-align: center;
  margin-top: 20px;
}

.resend-text {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

.resend-button {
  background: none;
  border: none;
  color: #2196f3;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
}

.resend-button:hover {
  color: #1976d2;
}
