/* Algemene layout */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #081245;
  background: #fff;
  overflow: hidden;
}

.register-container {
  display: flex;
  height: 100vh;
}

/* Linkerzijde */
.register-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: #fff;
}

.form-wrapper {
  width: 100%;
  max-width: 400px;
}

.logo {
  width: 120px;
  margin-bottom: 40px;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.intro {
  color: #555;
  margin-bottom: 28px;
  font-size: 15px;
}

form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

form input:focus {
  border-color: #00E6BF;
}

form button {
  width: 100%;
  padding: 13px;
  background-color: #00E6BF;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #00c8a8;
}

.terms, .login-link {
  font-size: 13px;
  color: #666;
  margin-top: 14px;
}

.terms a, .login-link a {
  color: #00E6BF;
  text-decoration: none;
}

.terms a:hover, .login-link a:hover {
  text-decoration: underline;
}

/* ✅ USP’s onder het formulier */
.usp-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
}

.usp-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.usp-list i {
  color: #00E6BF;
  font-size: 15px;
}

/* Rechterzijde */
.register-right {
  flex: 1;
  background: linear-gradient(145deg, #081245 0%, #0B185E 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.info-wrapper {
  max-width: 420px;
  z-index: 2;
  position: relative;
  padding: 40px;
}

.info-wrapper h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.info-wrapper h3 span {
  color: #00E6BF;
}

.info-wrapper p {
  color: #d6d6e3;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Rechterzijde USP-styling */
.usp-right {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  margin-top: 25px;
}

.usp-right li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}

.usp-right i {
  color: #00E6BF;
  font-size: 15px;
}

/* Afbeelding rechts */
.side-image {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 380px;
  opacity: 0.9;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Responsief */
@media (max-width: 900px) {
  .register-container {
    flex-direction: column;
  }

  .register-right {
    display: none;
  }

  .register-left {
    padding: 40px;
  }
}
.error-box  {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 10px;
    background: #ffeaea;
    border: 1px solid #e74c3c;
    padding: 8px 12px;
    border-radius: 6px;
    display: none;
  }

  .success-box {
    color: #00b894;
    font-size: 14px;
    margin-top: 10px;
    background: #e7f9f4;
    border: 1px solid #00b894;
    padding: 10px 12px;
    border-radius: 6px;
    display: none;
    text-align: left;
  }
  