@font-face {
  font-family: "Helvetica Neue";
  src: url("helvetica_neue/HelveticaNeueThin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: black;
  color: white;
  overflow:hidden;
}

body{
	font-size: 1.6em;
}

.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: 400px;
  height: auto;
}

.intro h1 {
  font-weight: 200;
  margin-bottom: 0.5rem;
  text-align: center;
}

.intro p {
  font-size:0.8em;
  font-weight: 300;
  color: #ccc;
  text-align: center;
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}

.btn {
  padding: 0.75rem;
  font-weight: bold;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
  font-size: 0.8em !important;
}

.btn.primary {
  background-color: #6d02e0;
  color: #fff;
  border: none;
  box-sizing: border-box;
}

.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.8em;
  color: #aaa;
  text-align: center;
  text-decoration: none;
}

.register strong {
  color: #fff;
}

@media (max-width: 1400px) {
  .split-layout {
    flex-direction: column;
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .visual-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    height: 100%;
    background: linear-gradient(to top, black 40%, rgba(0,0,0,0) 100%), url('../img/paris1.jpg') no-repeat center;
    background-size: cover;
    z-index: 0;
  }

  .container {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 2rem 1.5rem;
    z-index: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
	box-sizing: border-box;
	align-content: flex-end;
	flex-wrap: wrap;
	justify-content: flex-start;
  }

  .logo-container {
    text-align: center;
    margin-bottom: 40vh;
    z-index: 2;
  }
@media (max-height: 1000px) {
  .logo-container {
    margin-bottom: 25vh;
  }
}
  .logo {
    max-width: 80vw;
    margin-top: 1rem;
  }

  .intro h1,
  .intro p,
  .actions {
    text-align: left;
  }
  
  .register {
    text-align: center;
  }

  .actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
