/* ============================================================================
   Auth pages (signin, forgot-password, reset-password) - shared tweaks over
   the .signin-section component in style.css.
   ============================================================================ */
/* Heading: same style as the contact page "Send us a Message" (style.css targets
   .signin-header h2, but the pages use an h1) */
.signin-header h1 { font-family: var(--font-primary); font-size: 28px; font-weight: var(--fw-500); color: var(--dark); line-height: 1.2; margin: 0 0 10px; }
.signin-header p { font-size: 16px; color: var(--gray); margin-bottom: 32px; }

/* Remember-me checkbox: same square, 2px grey stroke as the inputs; orange with a tick when checked */
.remember-me input[type="checkbox"] { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; margin: 0; flex-shrink: 0; border: 2px solid #E5E5E5; border-radius: 0; background: #fff; cursor: pointer; display: inline-grid; place-content: center; transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.remember-me input[type="checkbox"]::before { content: ""; width: 10px; height: 10px; transform: scale(0); transition: transform 0.15s ease; background: #fff; clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }
.remember-me input[type="checkbox"]:checked { background: var(--primary); border-color: var(--primary); }
.remember-me input[type="checkbox"]:checked::before { transform: scale(1); }
.remember-me input[type="checkbox"]:focus-visible { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(253, 91, 0, 0.1); }
.remember-me label { font-size: 15px; }
.forgot-password { font-size: 15px; }

/* Right column on /signin ("New to Boxpod?"): mirrors the left column - left aligned,
   top aligned, same heading scale as "Welcome Back", sub-options styled like form labels */
.register-block { text-align: left; justify-content: flex-start; }
.register-block .signin-header h2 { font-family: var(--font-primary); font-size: 28px; font-weight: var(--fw-500); color: var(--dark); line-height: 1.2; margin: 0 0 10px; }
.register-option p { font-size: 15px; line-height: 1.55; color: var(--gray); margin: 0 0 18px; }
.register-block .register-option-title { font-family: var(--font-primary); font-size: 16px; font-weight: 500; color: var(--dark); margin: 0 0 8px; line-height: 1.3; }
.register-option--divided { border-top: 1px solid #E5E5E5; margin-top: 28px; padding-top: 28px; }
.register-block .register-features { margin-bottom: 22px; }
.register-block .register-features ul li { padding: 6px 0; font-size: 15px; }
.register-block .register-features ul li i { font-size: 15px; }
.register-block .btn { display: flex; }
.register-btn-secondary { background: var(--white); color: var(--dark); outline: 2px solid var(--dark) !important; outline-offset: -2px; }
.register-btn-secondary .arrow { background: var(--dark); }
.register-btn-secondary .arrow img { filter: brightness(0) invert(1); }
.register-btn-secondary:hover, .register-btn-secondary:focus { background: var(--dark); color: var(--white); }
.register-btn-secondary:hover .arrow, .register-btn-secondary:focus .arrow { background: var(--primary); }
.register-btn-secondary:hover .arrow img, .register-btn-secondary:focus .arrow img { filter: none; }

/* Success / alternative-action states (register, forgot/reset) */
.auth-success { background: #f0fdf4; border: 1px solid #16a34a; padding: 20px 22px; margin-bottom: 24px; font-family: var(--font-primary); }
.auth-success-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-primary); font-size: 17px; font-weight: 700; color: var(--dark); margin: 0 0 8px; line-height: 1.3; }
.auth-success-title i { color: #16a34a; font-size: 22px; }
.auth-success p { font-size: 15px; line-height: 1.55; color: var(--dark); margin: 0 0 10px; }
.auth-success p:last-child { margin-bottom: 0; }
.auth-success .auth-success-note { font-size: 13.5px; color: #666; }
.auth-alt { font-size: 15px; color: var(--gray); margin: 16px 0 0; }
.auth-alt a { color: var(--primary); font-weight: 500; text-decoration: none; }
.auth-alt a:hover { text-decoration: underline; }
.signin-block .auth-alt + .btn { margin-top: 10px; }
