@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');/* ===========================================
   Mi Toetie - Split Screen Login
   Voeg toe aan je child theme style.css
   of via Customizer → Extra CSS
   =========================================== */
/* Google Font Poppins laden */
/* ===== MAIN WRAPPER ===== */
.mt-login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  font-family: 'Poppins', sans-serif;
  margin: -20px;
  background: #fff;
}
/* ===== LINKER KANT: VISUAL ===== */
.mt-login-visual {
  background: linear-gradient(180deg, #F5EDE4 0%, #E8DDD1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.mt-login-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4B5A5' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.mt-login-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mt-login-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  object-fit: cover;
}
.mt-login-visual-overlay {
  text-align: center;
}
.mt-login-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #5D4D3D;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.mt-login-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mt-stars {
  color: #E8B86D;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.mt-rating-text {
  color: #8B7E6E;
  font-size: 0.95rem;
}
/* ===== RECHTER KANT: FORMULIEREN ===== */
.mt-login-forms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background: #fff;
}
.mt-login-section {
  max-width: 400px;
  width: 100%;
}
.mt-login-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.mt-login-subtitle {
  color: #888;
  margin-bottom: 35px;
  font-size: 0.95rem;
}
/* ===== FORM STYLING ===== */
.mt-login-wrapper .form-row {
  margin-bottom: 24px;
}
.mt-login-wrapper .form-row label {
  display: block;
  margin-bottom: 8px;
  color: #5D5D5D;
  font-weight: 500;
  font-size: 0.9rem;
}
.mt-login-wrapper .form-row label .required {
  color: #8B7355;
}
.mt-login-wrapper .input-text {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E5E5E5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}
.mt-login-wrapper .input-text:focus {
  outline: none;
  border-color: #8B7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
/* ===== LOGIN OPTIONS (Remember + Forgot) ===== */
.mt-login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mt-login-options .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
}
.mt-login-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8B7355;
}
.mt-forgot-password {
  color: #8B7355;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.mt-forgot-password:hover {
  color: #6B5545;
  text-decoration: underline;
}
/* ===== BUTTONS ===== */
.mt-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}
.mt-btn-primary {
  background: #8B7355;
  color: #fff;
}
.mt-btn-primary:hover {
  background: #6B5545;
  color: #fff;
}
.mt-btn-secondary {
  background: transparent;
  color: #8B7355;
  border: 1.5px solid #8B7355;
}
.mt-btn-secondary:hover {
  background: #8B7355;
  color: #fff;
}
/* ===== SOCIAL LOGIN ===== */
.mt-social-divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.mt-social-divider::before,
.mt-social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #EEE;
}
.mt-social-divider span {
  padding: 0 16px;
  color: #999;
  font-size: 0.85rem;
}
.mt-social-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}
.mt-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 48px;
  border: 1px solid #DDD;
  border-radius: 8px;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mt-social-btn:hover {
  border-color: #8B7355;
  color: #8B7355;
}
/* ===== SWITCH FORM LINK ===== */
.mt-switch-form {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 20px;
}
.mt-switch-link {
  color: #8B7355;
  font-weight: 600;
  text-decoration: none;
}
.mt-switch-link:hover {
  text-decoration: underline;
}
/* ===== REGISTER SECTION (hidden by default) ===== */
.mt-register-section {
  display: none;
}
.mt-register-section:target,
.mt-register-section.active {
  display: block;
}
.mt-login-section:has(+ .mt-register-section:target) {
  display: none;
}
.mt-password-notice {
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 24px;
}
/* ===== RESPONSIVE ===== */
/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce-account .mt-login-wrapper .woocommerce-form-row {
  padding: 0;
}
.woocommerce-account .mt-login-wrapper .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}
/* Hide default WooCommerce elements */
.mt-login-wrapper .u-column1,
.mt-login-wrapper .u-column2,
.mt-login-wrapper .col-1,
.mt-login-wrapper .col-2 {
  width: 100%;
  float: none;
  padding: 0;
}
@media (max-width: 991px) {
  .mt-login-wrapper {
    grid-template-columns: 1fr;
  }
  .mt-login-visual {
    padding: 40px 20px;
    min-height: 300px;
  }
  .mt-login-image {
    max-width: 250px;
  }
  .mt-login-tagline {
    font-size: 1.5rem;
  }
  .mt-login-forms {
    padding: 40px 20px;
  }
  .mt-login-section {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .mt-login-visual {
    padding: 30px 15px;
    min-height: 250px;
  }
  .mt-login-image {
    max-width: 200px;
  }
  .mt-login-tagline {
    font-size: 1.3rem;
  }
  .mt-login-forms {
    padding: 30px 15px;
  }
  .mt-login-section h2 {
    font-size: 1.5rem;
  }
  .mt-login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
