/* ========================================
   MUSICIAN AVAILABILITY - LOGIN STYLES
   ======================================== */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #1a1a2e;
  color: #eee;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #16213e;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

h1 { 
  color: #00d9ff; 
  margin-bottom: 10px; 
}

.subtitle { 
  color: #888; 
  margin-bottom: 5px; 
}

.message { 
  padding: 12px; 
  border-radius: 6px; 
  margin-bottom: 20px; 
  text-align: center;
}

.message.error { 
  background: #3d1a1a; 
  color: #ff4444; 
}

.message.success { 
  background: #1a3d1a; 
  color: #44ff44; 
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: #4285f4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
  margin: 5px 0;
}

.google-btn:hover {
  background: #357ae8;
}

.google-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.google-btn img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Logo header styles */
.logo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-header h1 {
  margin: 0;
}
