body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: black;
  color: white;
}

.split-layout {
  display: flex;
  height: 100vh;
}

.visual-side {
  flex: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 100%), url('../img/paris1.jpg') no-repeat center;
  background-size: cover;
  max-width:40vw;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 200px;
  height: auto;
}

.intro h1 {
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.intro p {
  font-weight: 300;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  padding: 0.75rem;
  font-weight: bold;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  text-align: center;
}

.btn.primary {
  background-color: #6d02e0;
  color: #fff;
  border: none;
}

.btn.primary:hover {
  background-color: #5a02be;
}

.btn.secondary {
  background-color: transparent;
  color: #6d02e0;
  border: 2px solid #6d02e0;
}

.btn.secondary:hover {
  background-color: #6d02e011;
}

.register {
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
  text-decoration: none;
}

.register strong {
  color: #fff;
}
