* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  height: 100vh;
  display: flex;
  background-color: #f4f4f4;
}
.login-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.login-image {
  flex: 1;
  background-image: url('/api/placeholder/800/600');
  background-size: cover;
  background-position: center;
  position: relative;
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,83,255,0.7) 0%, rgba(0,210,255,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}
.login-content {
  flex: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
.login-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.login-container h1 {
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus {
  border-color: #007bff;
}
.password-field {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}
.forgot-password {
  text-align: right;
  margin-bottom: 20px;
}
.forgot-password a {
  color: #007bff;
  text-decoration: none;
}
.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-btn:hover {
  background-color: #0056b3;
}
.google-login {
  margin-top: 20px;
  text-align: center;
}
.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}
.google-btn:hover {
  background-color: #f4f4f4;
}
.google-icon {
  margin-right: 10px;
  color: initial;
}
.signup-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
}
.signup-link a {
  color: #007bff;
  text-decoration: none;
}
.alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}
/* Custom Google icon colors */
.google-icon i {
  font-size: 18px;
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) no-repeat center center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
