:root {
  --primary-purple: #401d75;
  --primary-orange: #ff5c00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Sora',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: var(--primary-purple);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.brand-panel {
  flex: 1;
  background-color: var(--primary-purple);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.portal-panel {
  flex: 1;
  background-color: var(--background-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.portal-panel .logo-header {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 2rem;
}

.portal-panel h2 {
  color: var(--text-dark);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portal-panel p {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.links-container {
  width: 100%;
  max-width: 350px;
}

.links-container a {
  display: block;
  background-color: var(--primary-orange);
  color: var(--text-light);
  padding: 15px 30px;
  margin: 15px 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.links-container a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .brand-panel {
    min-height: 40vh;
  }

  .brand-panel .logo {
    font-size: 3rem;
  }

  .brand-panel .slogan {
    font-size: 1.2rem;
  }

  .portal-panel {
    min-height: 60vh;
    justify-content: flex-start;
    padding-top: 50px;
  }
}
