/*
Theme Name: SESAE
Theme URI: https://sesae.gr/
Template: hello-elementor
Author: Lalis Brainiacs
Author URI: http://lalisbrainiacs.com/
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1753859523
Updated: 2025-07-30 07:12:03

*/

.sesae-login-card { max-width: 420px; margin: 0 auto; }
.sesae-login-form { display: grid; gap: 20px; }

.sesae-input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  box-sizing: border-box;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #43425D !important;
  font-family: "Manrope", Sans-serif;
}
.sesae-email-input { margin-bottom: 20px; }
.sesae-row { display: flex; align-items: center; justify-content: space-between; }
.sesae-row--meta { margin-top: 5px; }
.sesae-row--actions { margin-top: 40px; }

.sesae-remember { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-family: "Manrope", Sans-serif;}
.sesae-forgot { font-size: 15px; text-decoration: none; color: #43425D; font-family: "Manrope", Sans-serif;}
.sesae-forgot:hover { text-decoration: none; color: #43425D;}

/* Buttons */
.sesae-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  line-height: 1;
  font-family: "Manrope", Sans-serif;
}
.sesae-btn--primary {
  background: #9E0303;
  color: #fff;
  border: 1px solid #43425D;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 40px 15px 40px;
  font-family: "Manrope", Sans-serif;
}
.sesae-btn--primary:hover { background: #9E0303; color: #fff; }

.sesae-btn--secondary {
  background: transparent;
  color: #000;
  border: 1px solid #9E0303;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 40px 15px 40px;
  font-family: "Manrope", Sans-serif;
}
.sesae-btn--secondary:hover { background: transparent; color: #000; }

@media (max-width: 768px) {
  .sesae-row--meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;             /* allow second line */
    row-gap: 20px;
  }
  .sesae-remember{ flex: 1 1 auto; }
  .sesae-forgot{
    flex: 0 0 100%;              /* drop to its own line */
    text-align: right;           /* stay right-aligned */
    font-size: 14px;
  }
    .sesae-row--actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* === SESAE REG FORM CSS START ===================================== */

/* Container */
.sesae-reg {
  --col-gap: 60px;          /* requested 60px between columns */
  --row-gap: 24px;
  --field-gap: 16px;
  --card-radius: 12px;
  --border: #e5e7eb;
  --text-muted: #6b7280;
  --accent: #9E0303;        /* change to your brand */
  --accent-strong: #9E0303; /* change to your brand */
  max-width: 1100px;
  margin: 0 auto;
}

/* Sections + headings */
.sesae-section { margin-bottom: 40px; }
.sesae-section__title {
  margin: 0 0 12px 0;
  font-weight: 700;
  color: #9E0303;
  font-size: 15px;
  font-family: "Manrope"
}
.ref1,.ref2 {
  font-size: 12px;
}
.sesae-section__title--center { text-align: center; color: #9E0303; font-size: 15px; font-family: "Manrope", Sans-serif; font-weight: 700;}

/* Two-column rows (desktop) */
.sesae-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--col-gap);
  row-gap: var(--row-gap);
  align-items: start; /* top alignment as requested */
}
.sesae-col .sesae-field { margin-bottom: var(--field-gap); }

/* Inputs */
.sesae-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: "Manrope", Sans-serif;
}
.sesae-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(233 14 14 / 15%);
}

/* Membership options (3 on one row desktop) */
.sesae-membership-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
  font-family: "Manrope", Sans-serif;
}
.sesae-option {
  position: relative;
  display: block;
}
.sesae-option__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none; /* visually controlled by box */
  font-family: "Manrope", Sans-serif;
}
.sesae-option__box {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 120px;
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: var(--card-radius);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative;
  font-family: "Manrope", Sans-serif;
}

/* Draw a “checkbox” look */
.sesae-option__box::before {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px; /* square-ish checkbox */
  background: #fff;
  transition: all .15s ease;
}
.sesae-option__input:checked + .sesae-option__box {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(2,132,199,.12);
  background: #fff8f8;
}
.sesae-option__input:checked + .sesae-option__box::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px #fff;
}

/* Typography inside membership cards */
.sesae-option__heading {
  font-weight: 700;
  font-size: 15px;
  font-family: "Manrope", Sans-serif;
  letter-spacing: .2px;
  color: #000000;
}
.sesae-option__sub {
  font-size: 13px;
  font-family: "Manrope", Sans-serif;
  color: #000000;
}

/* Membership note */
.sesae-note--membership {
  font-family: "Manrope", Sans-serif;
  margin-top: 10px;
  color: #000000;
  font-size: 12px;
  text-align: center;
}

/* Salutation “checkbox” chips (single-choice radios) */
.sesae-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--field-gap);
  font-family: "Manrope", Sans-serif;
}
.sesae-radio {
  position: relative;
  display: inline-block;
  font-family: "Manrope", Sans-serif;
}
.sesae-radio__input {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  font-family: "Manrope", Sans-serif;
}
.sesae-radio__box {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
  font-family: "Manrope", Sans-serif;
}
.sesae-radio__input:checked + .sesae-radio__box {
  border-color: var(--accent);
  background: #fff8f8;
}

/* Notice (referral) */
.sesae-notice--referral {
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  background: #f8fafc;
  color: #111827;
  margin-bottom: 40px;
  font-family: "Manrope", Sans-serif;
}

/* Checklists */
.sesae-checklist { display: grid; gap: 10px; }
.sesae-checklist .sesae-check {
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.4;
  font-size: 12px;
  font-family: "Manrope", Sans-serif;
}
.sesae-required-hint {
  margin-top: 10px;
  color: #9E0303;
  font-size: 12px;
  font-family: "Manrope", Sans-serif;
}

/* Submit */
.sesae-actions--center { text-align: center; }

/* Vertical rhythm between logical rows/sections */
.sesae-row--two + .sesae-section,
.sesae-section + .sesae-section { margin-top: 40px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sesae-membership-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .sesae-row--two { grid-template-columns: 1fr; column-gap: 0; }
  .sesae-membership-options { grid-template-columns: 1fr; }
}
/* ===================================================================
   Responsive additions (append-only)
   Breakpoints used: 1280, 1024, 768, 600, 480, 360
   =================================================================== */

/* Large laptops / desktops ↓ */
@media (max-width: 1280px) {
  .sesae-reg { --col-gap: 48px; } /* slightly tighter columns */
}

/* Small laptops / tablets (landscape) ↓ */
@media (max-width: 1024px) {
  .sesae-reg { --col-gap: 44px; }
  /* You already set this, safe to repeat for clarity */
  .sesae-membership-options { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets (portrait) / big phones ↓ */
@media (max-width: 768px) {
  /* Stack the two-column rows */
  .sesae-row--two { grid-template-columns: 1fr; column-gap: 0; }
  /* Membership cards one per row */
  .sesae-membership-options { grid-template-columns: 1fr; }

  .sesae-section { margin-bottom: 32px; }
  .sesae-col .sesae-field { margin-bottom: 14px; }

  /* Buttons full width on compact layouts */
  .sesae-btn--primary,
  .sesae-btn--secondary { width: 100%; text-align: center; }
}

/* Phones ↓ */
@media (max-width: 600px) {
  .sesae-reg { --row-gap: 18px; --field-gap: 14px; }
  .sesae-option__box { min-height: 100px; padding: 14px; }
  .sesae-option__heading { font-size: 14px; }
  .sesae-option__sub { font-size: 12px; }
}

/* Small phones ↓ */
@media (max-width: 480px) {
  .sesae-reg { padding: 0 12px; } /* slight side padding */
  .sesae-section__title,
  .sesae-section__title--center { font-size: 14px; }
  .sesae-input { padding: 10px 12px; font-size: 15px; }
  .sesae-note--membership { font-size: 11px; }
  .sesae-radio__box { padding: 10px 14px; }
  .sesae-option__box::before { top: 12px; right: 12px; }
}

/* Tiny devices ↓ */
@media (max-width: 360px) {
  .sesae-option__box { min-height: 90px; }
  .sesae-btn--primary,
  .sesae-btn--secondary { padding: 12px 16px; font-size: 16px; }
}

/* (Optional) Login form small-screen niceties */
@media (max-width: 480px) {
  .sesae-login-card { padding: 0 12px; }
  .sesae-row--actions { width: 100%; }
  .sesae-row--actions .sesae-btn { width: 100%; }
}


/* Optional: tighten default WP notices inside #custom-registration-result */
#custom-registration-result .notice { margin-top: 16px; }

/* === SESAE REG FORM CSS END ======================================= */

.sesae-field.is-error .sesae-input { border-color:#dc3545 !important; box-shadow:0 0 0 3px rgba(220,53,69,.10); }
.sesae-error { margin-top:6px; font-size:12px; color:#dc3545; }