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

:root{
  --purple: #70479b;
  --purpledark: #44326d;
  --purplelight: #f7f3ff;
  --black: #1a1a1a;


  --color-light-purple: #CCABD8; /* Lichte paarse kleur */
  --color-light-teal: #6EC6#CA;   /* Lichtblauwig groen (teal) */
  --color-peach: #FA897B;         /* Perzikachtige kleur */
  --color-coral: #FF6F61;         /* Koraal kleur */
  --color-pale-yellow: #F9E2B3;   /* Bleekgele kleur */
  --color-sky-blue: #73B5D6;      /* Luchtblauw */
}

body {

  margin: 0;
  height: 100vh;
  font-family: sans-serif;

  background: linear-gradient(
    135deg,
    #f3ecff,
    #e4d7ff,
    #f8e9f1
);
}

label{
  display: block;
  font-size:13px;
  font-weight: bold;
}

img{
  display: block;
  width: auto;
  height: auto;
}

input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  width: auto;

}

h1 {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  transform: scale(1, 1.1);
  font-size: 34px;
  color: var(----black);
  line-height: 1.2;
  margin-bottom: 10px;
  line-height: 1.3;
}

p{
  margin-top:10px;
  margin-bottom:20px;
}

.p-small{
  max-width: 600px;
  margin:0 auto;
}

.title{
  text-transform: uppercase;
  font-weight: bold;
}

.align-center{
  text-align:center;
}

.button{
  background:var(--purple);
  color:#FFF;
  padding:8px 16px;
  line-height: 34px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
}

#button-login{
    margin-top:20px;
    width: 100%;
}

.button-full{
  width:100%;
}

.grid{
  display: grid;
}

.grid-gap{
  grid-gap: 20px;
}

.grid-2{
  grid-template-columns: 1fr 1fr;
}

.grid-4{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#logo{
  position: absolute;
  width: 150px;
  left:0px;
}

.center{
  max-width: 1080px;
  width: 100%;
  margin:0 auto;
  position: relative;
}


/* centreren login */
.login-wrapper {
  position: relative;
  z-index: 1;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* login box */
.login-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  text-align: center;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* inputs */
.login-card input {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* knop */
.login-card button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #cbb8ff, #e0d4ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.login-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding:40px 60px;
  box-sizing: border-box;

  z-index: 2;
}

.login-new{
  margin-top:20px;
  color:#CCC;
  font-size:15px;
}

.login-new a{
  color:var(--purple) !important;
  text-decoration: none;
}

/* logo afbeelding */
.logo {
  height: 28px;   /* key: vaste hoogte */
  width: auto;    /* behoud verhoudingen */
}

.logo img{
  height: 28px;
}

/* rechterkant */
.header-actions a {
  text-decoration: none;
  font-size: 14px;
  color:var(--black);
  padding:10px 20px;
  transition: 0.2s;
  font-weight: bold;
}

.header-actions a:hover {
  background:#FFF;
  border-radius: 8px;
}

/* layout */
.signup-wrapper {
    display: flex;
    height: 100vh;
}

/* LINKS */
.signup-left {
    width: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.form {
    width: 100%;
    max-width: 380px;
}

/* logo */
.logo {
    height: 24px;
    margin-bottom: 25px;
}

/* titel */
.form h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* labels */
.form label {
    font-size: 13px;
    margin-top: 14px;
    display: block;
    color: #555;
}

/* inputs */
.form input {
    width: 100%;
    padding: 15px;
    margin-top: 6px;

    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.form input:focus {
    outline: none;
    border-color: #b8a3ff;
    box-shadow: 0 0 0 3px rgba(184,163,255,0.15);
}

/* knop */
.form button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;

    border-radius: 14px;
    border: none;

    background: linear-gradient(135deg, #b8a3ff, #9f87f5);
    color: white;

    font-weight: 600;
    cursor: pointer;
}

/* micro */
.micro {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* trust */
.trust {
    margin-top: 8px;
    font-size: 13px;
}

/* links */
.login {
    margin-top: 18px;
    font-size: 14px;
}

.login a {
    color: #7c6ee6;
    text-decoration: none;
}

.help {
    margin-top: 6px;
    font-size: 13px;
    color: #777;
}

.help a {
    color: #7c6ee6;
    text-decoration: none;
}

/* RECHTS */
.signup-right {
    width: 50%;

    background: linear-gradient(
        135deg,
        #f3ecff,
        #e4d7ff,
        #f8e9f1
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: 420px;
    color: #4b3f72;
}

/* titel */
.content h2 {
    font-size: 26px;
}

/* checks */
.checks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checks li {
    margin-bottom: 12px;
}

/* container */
.review {
    margin-top: 40px;
    padding: 20px;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);

    border-radius: 16px;
}

/* tekst */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    color: #4b3f72;
}

/* auteur */
.review-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

/* avatar */
.review-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

/* naam + rol */
.review-info strong {
    display: block;
    font-size: 14px;
}

.review-info span {
    font-size: 12px;
    opacity: 0.6;
}

/* proof */
.proof {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
}