/* ========================
   Loginpagina CoachOne – Maxton stijl
   ======================== */

body.maxton-login {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b1220;
  color: #fff;
}

.login-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Linker illustratiekant */
.login-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gradient-bg {
  background: radial-gradient(900px 600px at 0% 50%, rgba(46,121,255,0.25), transparent),
              linear-gradient(135deg, #1e5fe0 0%, #4b1eab 100%);
}

.login-visual {
  text-align: center;
  max-width: 420px;
}

.login-visual h1 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.login-visual .logo {
  width: 160px;
  margin-bottom: 24px;
}

.login-visual .illustratie {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.25));
}

/* Rechterkant – inlogformulier */
.login-right {
  flex: 1;
  background: #101826;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.form-box {
  width: 100%;
  max-width: 400px;
  background: #0f172a;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.form-box h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.social-login {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-social {
  flex: 1;
  padding: 10px;
  background: #1e293b;
  color: #fff;
  border: 1px solid #334155;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 16px 0;
  color: #94a3b8;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0d1525;
  color: white;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-color: #2e79ff;
  box-shadow: 0 0 0 3px rgba(46,121,255,0.3);
}

.form-extra {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.error {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
  text-align: center;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #d946ef, #9333ea);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 12px;
}

.btn-login:hover {
  box-shadow: 0 10px 24px rgba(147,51,234,0.35);
  transform: translateY(-1px);
}

.signup-text {
  font-size: 14px;
  text-align: center;
  color: #cbd5e1;
}

.signup-text a {
  color: #f472b6;
  text-decoration: none;
}
