* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f3f3f3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-container {
  width: 100%;
  max-width: 1200px;
}

.logo-section {
  text-align: center;
  margin-bottom: 60px;
}

.logo {
  height: 60px;
  width: auto;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.login-card {
  background-color: white;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2e3337;
  margin-bottom: 30px;
  text-align: center;
}

.buttons-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.portal-button {
  background-color: #b2f910;
  color: white;
  text-decoration: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(178, 249, 16, 0.3);
  font-family: 'Nunito Sans', sans-serif;
}

.portal-button:hover {
  background-color: #a0e000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(178, 249, 16, 0.4);
}

.card-footer {
  width: 100%;
  text-align: center;
}

.footer-question {
  font-size: 18px;
  color: #2e3337;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-link {
  color: #30a4f1;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s;
  display: inline-block;
}

.footer-link:hover {
  color: #2589d6;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .login-card {
    padding: 40px 30px;
  }

  .card-title {
    font-size: 28px;
  }

  .portal-button {
    font-size: 16px;
    padding: 16px 24px;
  }

  .logo {
    height: 50px;
  }

  .logo-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 24px;
  }

  .portal-button {
    font-size: 15px;
    padding: 14px 20px;
  }

  .footer-question {
    font-size: 16px;
  }
}
