@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.login-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.8s ease;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logo-container {
  margin-bottom: 30px;
}

.app-logo {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.app-logo span {
  color: #764ba2;
  font-weight: 800;
}

h1 {
  color: #333;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

p {
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.5;
}

.login-btn-container {
  margin-top: 30px;
}

.login-btn {
  width: 100%;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  color: #444;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn:hover {
  background-color: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.login-btn img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.privacy-policy {
  margin-top: 20px;
}

.privacy-policy p {
  margin: 0;
  font-size: 11px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .login-card {
    max-width: 85%;
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px 15px;
    max-width: 90%;
  }
  
  h1 {
    font-size: 24px;
  }
  
  .app-logo {
    font-size: 28px;
  }
  
  p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .google-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .google-btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 320px) {
  .login-card {
    padding: 20px 10px;
  }
  
  h1 {
    font-size: 22px;
  }
  
  .app-logo {
    font-size: 24px;
  }
}

@media (max-height: 600px) {
  .login-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .logo-container {
    margin-bottom: 15px;
  }
}

@media (max-height: 450px) and (orientation: landscape) {
  .login-container {
    height: auto;
    min-height: 100vh;
    padding: 20px 0;
  }
}
