/* public/css/loginpage.css */
:root {
  --azc-primary: #10af91;
  --azc-primary-hover: #0e9f83;
  --azc-bg: #eeeeee;
  --azc-border-radius: 16px;

  --azc-box-bg: #ffffff;
  --azc-text: #222222;
  --azc-text-muted: #444444;
  --azc-shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
  --azc-shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Reset & basislayout */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--azc-text);
  background: var(--azc-bg);
}

/* Login-container (full-page achtergrond) */

.login-container {
  height: 100vh;
  position: relative;
  background: var(--azc-bg);
}

/* Popup (bestaande login popup) */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background: var(--azc-box-bg);
  padding: 20px;
  border-radius: var(--azc-border-radius);
  text-align: center;
  box-shadow: var(--azc-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
}

.popup-content h2 {
  margin: 0 0 10px;
  color: var(--azc-text);
}

.popup-content input {
  padding: 10px;
  font-size: 16px;
  border-radius: var(--azc-border-radius);
  border: 1px solid #cccccc;
}

/* Buttons in popup hergebruiken dezelfde kleuren als post-login */

.popup-content button {
  padding: 10px 20px;
  background: var(--azc-primary);
  border: none;
  border-radius: var(--azc-border-radius);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.popup-content button:hover {
  background: var(--azc-primary-hover);
}

/* === Post-login pagina === */

.postlogin-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;      
  justify-content: center;    
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.postlogin-box {
  background: var(--azc-box-bg);
  padding: 24px 24px 20px;
  border-radius: var(--azc-border-radius);
  box-shadow: var(--azc-shadow-medium);
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.postlogin-logo {
  width: 120px;         
  height: auto;
  margin-bottom: 40px;
  opacity: 0.95;
}

.postlogin-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--azc-text);
}

.postlogin-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--azc-text-muted);
}

.postlogin-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.postlogin-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--azc-border-radius);
  background: var(--azc-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.postlogin-button:hover {
  background: var(--azc-primary-hover);
}

.postlogin-button--secondary {
  background: #ddd;
  color: var(--azc-text);
}

.postlogin-button--secondary:hover {
  background: #c8c8c8;
}
