
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

nav ul{
    gap: 20px;
  
}

.nav-brand{
    font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  background: url('/img/login_banner.png') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px; 
  min-height: calc(100vh - 80px);
}

.login-box {
  background: rgba(33, 36, 41, 0.7);
  backdrop-filter: blur(0px);
  padding: 40px;
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
}

.login-box h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.login-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.checkbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forgot-link {
  color: white;
  text-decoration: underline;
  font-size: 0.9rem;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #2A9D8F;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #238f7f;
}

.signup-text {
  margin-top: 20px;
  font-size: 0.9rem;
}

.signup-text a {
  color: #2A9D8F;
  text-decoration: none;
  font-weight: bold;
}

.signup-text a:hover {
  text-decoration: underline;
}

.google-login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #212429;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.google-login-btn:hover {
  background-color: #f1f1f1;
}

.google-login-btn img {
  width: 20px;
  height: 20px;
}


.trustdrive-footer {
  background-color: #212429;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  color: #2A9D8F;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2A9D8F;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #2A9D8F;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    padding: 0;
  }
}
