body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f7f6;
  overscroll-behavior-y: contain;
}

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

.login-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: fadeIn 0.5s ease-in-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 1.5rem !important;
}

.login-heading {
  font-weight: 700;
  color: #333;
}

.login-subheading {
  color: #666;
  margin-bottom: 2rem;
}

.btn-google {
  background-color: #4285F4;
  color: white;
  font-size: 1rem;
  padding: 12px 0;
  border: none;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.btn-google .fab {
  margin-right: 10px;
  font-size: 1.2rem;
}

.login-footer {
  font-size: 0.8rem;
  color: #999;
}