/* Reset */
* {
    box-sizing: border-box;
}

/* Basis */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Container */
.splitcontainer {
    display: flex;
	height: 100vh;
}

/* Kolommen */
.column.left {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.column.right {
    flex: 3;
    display: flex;
    flex-direction: column;
}
/* Blokken */
.box {
    flex: 1;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 1rem;
}

.left .top    { 
	background-color: #99ccff;
}
.spinner {
	height: 100px; 
	padding-right: 10px; 
	margin-top: 60px;
	animation: spinY 5s linear infinite;
	transform-style: preserve-3d;
}
@keyframes spinY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.left .middle { 
	background-color: #99ccff;
}
.left .box.middle h2 {
    text-align: left;    
    margin-left: 20px;   
    line-height: 1.5;    
	font-size: 20px;
}
.left .bottom { 
	background-color: #99ccff;
}
.box.bottom {
    display: flex;       
    flex-direction: column; 
    justify-content: flex-end; 
    align-items: center;       
    height: 150px;             
    text-align: center;        
}
.right .box.top h2 {
    margin-top: 200px; /* Pas dit aan hoe ver je h3 wilt laten zakken */
}
.right .box.top h5 {
    margin-top: 100px; /* Pas dit aan hoe ver je h3 wilt laten zakken */
	text-align: center;
}
.right .top   {
	background-color: #F8F8F8; 
}
.right .middle {
	background-color: #F8F8F8; 
}
.form-grouplogin {
  display: flex;
  align-items: center;       
  margin-bottom: 1rem;
}
.form-grouplogin label {
  width: 120px;              
  margin-right: 12px;        
  font-weight: 500;
  text-align: right;         
}
.inputlogin {
  width: 250px;              
  height: 36px;              
  padding: 0 10px;
  font-size: 1.2rem;
  box-sizing: border-box;    
  border: 1px solid #ccc;
  border-radius: 6px;
}
.inputlogin:focus {
  outline: none;
  border-color: #007bff;
}
/* Inlogknop */
.buttonlogin {
	width: 250px;            
	height: 48px;            
	font-size: 1.2rem;       
	font-weight: bold;
	color: white;
	background-color: #207cd6;
	border: none;
	border-radius: 8px;        
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
	display: block;             
	margin: 1rem auto 0 auto;   
	transform: translateX(5.5em); 
}

.buttonlogin:hover {
  background-color: #0056b3;   
  transform: translateX(5.45em); 
}

.forgot-right {
	font-size: 1.2rem;          
	font-weight: bold;
	display: block;             
	margin: 1rem auto 0 auto;   
	transform: translateX(10.5em); 
}

.right .bottom {
	background-color: #F8F8F8;
 
}
.box.bottom.request-account {
    text-align: center;        
}

.account-item {
    display: flex;
    flex-direction: row;    
    align-items: center;    
    margin-bottom: 15px;    
}

.account-item img {
    margin-bottom: 5px;     
    width: 32px;            
    height: 32px;           
}

.right .bottom.footer {
	flex-direction: row;
	background-color: #F8F8F8; 
	justify-content: center;   
    align-items: flex-end;     
	height: 80px;              
    text-align: center;        
    gap: 5px;
}


/* =========================
   RESPONSIVE – MOBIEL
   ========================= */
@media (max-width: 768px) {

    .splitcontainer {
        flex-direction: column;
        height: auto;
    }

    .column {
        width: 100%;
    }

    .box {
        min-height: 120px;
    }
}
/* Modal breder maken en responsive */
.modal-wide {
    width: 800px;        
    max-width: 90vw;     
}

/* Wrapper: centraal uitlijnen */
.forgot-password-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;     
    justify-content: center; 
    text-align: center;
    padding: 20px;
}

/* Tekst */
.forgot-text {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #000;  
}

/* Formulier */
.forgot-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;      
    max-width: 600px;  
}

/* Label + input groep */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;       
}

/* Inputveld breedte aanpasbaar */
.forgot-input {
    width: 100%;         
    max-width: 500px;    
    padding: 10px 12px;
    font-size: 1.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Knop */
.forgot-button {
    width: 220px;
    height: 44px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.forgot-button:hover {
    background-color: #0056b3;
}


/* Wrapper voor alles gecentreerd */
.request-account-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;      
    justify-content: center;  
    text-align: center;
    padding: 20px;
}

/* Tekst boven formulier */
.request-text {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #000;
}

/* Formulier container */
.request-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   
    width: 100%;
    max-width: 600px;          
}

/* Form-group: label naast input */
.form-group {
    display: flex;
    flex-direction: row;       
    align-items: center;       
    margin-bottom: 15px;
    width: 100%;
}

/* Labels links */
.request-label {
    width: 180px;             
    text-align: right;        
    margin-right: 15px;       
    font-weight: bold;
    flex-shrink: 0;           
}

/* Inputvelden naast labels */
.request-input {
    flex: 1;                  
    min-width: 200px;         
    max-width: 400px;         
    padding: 10px 12px;
    font-size: 1.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.g-recaptcha {
    display: block;        
    margin: 15px auto;     
}

/* Submit knop */
.request-button {
    width: 220px;
    height: 44px;
    font-size: 1,5rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 20px auto 0;  
    display: block;       
}

.request-button:hover {
    background-color: #0056b3;
}
.alert {
    position: fixed;          
    top: 15%;                 
    left: 65%;                 
    transform: translateX(-50%); 
    z-index: 1000;
    padding: 15px 25px;
    background-color: #dc3545; 
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-weight: bold;
    text-align: center;
    max-width: 800px;          
}