/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Body Styling */
body {
  height: 100vh;
  background: linear-gradient(135deg, #1e3565, #4b6697);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

/* Login Container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

/* Login Card */
.login-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

/* Logo Styling */
.logo img {
  height: auto;
  width: 150px;
  margin-bottom: 20px;
}

/* Title and Subtitle */
.title {
  color: #1e3565;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #555555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.icon-google {
  height: auto;
  width: 18px;
  margin-right: 12px;
}
/* Google Sign-In Button */
.google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-signin-button img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.google-signin-button span {
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}

.google-signin-button:hover {
  background-color: #f5f5f5;
}

/* Error Message */
.error-message {
  color: #d9534f;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
    width: 90%;
  }

  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }
}
