body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  background: linear-gradient(to bottom right, #0e83f0, #3fa9f5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.login-card {
  background-color: #000;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.logo img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
}

.subtext {
  font-size: 15px;
  margin-bottom: 25px;
  color: #ccc;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: white;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border: none;
  margin: 0 auto;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.google-btn img {
  width: 22px;
  height: 22px;
}

.google-btn:hover {
  background-color: #f1f1f1;
}

.footer-text {
  margin-top: 20px;
  font-size: 13px;
  color: #999;
}

/* MEDIA QUERY FOR MOBILE DEVICES */
@media (max-width: 480px) {
  .login-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .logo span {
    font-size: 20px;
  }

  .subtext {
    font-size: 14px;
  }

  .google-btn {
    font-size: 15px;
    padding: 12px 16px;
  }

  .footer-text {
    font-size: 12px;
  }
}
