/* styles.css - Production-ready for mijnRINO */

/* Base variables for theming */
:root {
    --primary-color: #5e2d79; /* Deep purple from the image */
    --primary-color-dark: #4a235f; /* Darker purple for hover states */
    --secondary-color: #a3ce4a; /* Light green for buttons/accents */
    --secondary-color-hover: #91b942; /* Slightly darker green for hover */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f5f5;
    --form-background: #ffffff;
    --border-color: #dddddd;
    --success-color: #d4edda;
    --success-text: #155724;
    --error-color: #f8d7da;
    --error-text: #721c24;
    --warning-color: #fff3cd;
    --warning-text: #856404;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Header */
  .header {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .header-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-container img {
    height: 40px;
  }
  
  .login-button {
    background-color: var(--text-light);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .login-button:hover {
    background-color: #f0f0f0;
  }
  
  /* Main container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
  }
  
  /* Typography */
  h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 28px;
  }
  
  h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 22px;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  small {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 5px;
  }
  
  /* Form styles */
  .form-section {
    background-color: var(--form-background);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .form-group.half {
    flex: 1;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="tel"]:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(94, 45, 121, 0.2);
  }
  
  /* Buttons */
  .form-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
  }
  
  .btn.primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
  }
  
  .btn.primary:hover {
    background-color: var(--secondary-color-hover);
  }
  
  .btn.secondary {
    background-color: #f0f0f0;
    color: #555;
  }
  
  .btn.secondary:hover {
    background-color: #e0e0e0;
  }
  
  /* Password reset specific */
  .password-reset-box {
    background-color: var(--form-background);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 30px auto;
  }
  
  .form-links {
    margin-top: 20px;
    text-align: center;
  }
  
  .form-links a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .form-links a:hover {
    text-decoration: underline;
  }
  
  .form-hint {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
  }
  
  /* Alert styles */
  .alert {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-weight: 500;
  }
  
  .alert.success {
    background-color: var(--success-color);
    color: var(--success-text);
    border: 1px solid #c3e6cb;
  }
  
  .alert.error {
    background-color: var(--error-color);
    color: var(--error-text);
    border: 1px solid #f5c6cb;
  }
  
  .alert.warning {
    background-color: var(--warning-color);
    color: var(--warning-text);
    border: 1px solid #ffeeba;
  }
  
  .alert ul {
    margin-left: 20px;
    margin-top: 10px;
  }
  
  /* Footer */
  .footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 25px 0;
    margin-top: auto;
  }
  
  .footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer .logo-container img {
    height: 30px;
    margin-bottom: 15px;
    opacity: 0.9;
  }
  
  .social-links {
    margin-top: 15px;
  }
  
  .social-links a {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  
  .social-links a:hover {
    opacity: 1;
  }
  
  /* Password reset form specific */
  #email {
    margin-bottom: 5px;
  }
  
  /* Update for the wachtwoord resetten button */
  .wachtwoord-btn {
    background-color: var(--secondary-color);
    width: 100%;
    padding: 12px;
    color: var(--text-dark);
    font-weight: bold;
    text-transform: capitalize;
    margin-top: 10px;
  }
  
  .wachtwoord-btn:hover {
    background-color: var(--secondary-color-hover);
  }
  
  /* Login form */
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
  }
  
  .login-box {
    background-color: var(--form-background);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
  }
  
  /* Dutch specific text formatting */
  .let-op {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .een-uur {
    font-weight: bold;
  }
  
  .een-keer {
    font-weight: bold;
  }
  
  /* Support section */
  .support-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
  }
  
  .support-link:hover {
    text-decoration: underline;
  }
  
  /* Inlogproblemen section */
  .inlogproblemen {
    font-weight: bold;
    color: var(--primary-color);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .form-actions {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  /* Additional styles for the reset password page specifically */
  .input-email-field {
    margin-bottom: 20px;
  }
  
  /* Dutch text styling */
  .help-text {
    margin-bottom: 20px;
    color: #555;
  }
  
  .emphasis {
    font-weight: bold;
  }
  
  /* For the language in the provided screenshot */
  .dutch-instructions {
    line-height: 1.7;
  }
  
  /* Add these styles for the header section and user actions */
  .header h1 {
    margin: 0;
  }
  
  .user-actions {
    display: flex;
    gap: 10px;
  }