/* ─── AUTH LAYOUT ──────────────────────────────────────────── */
/* Shared styles for all auth pages (login, register, forgot, reset, verify).
   Loaded via @push('styles') in each auth view. */
.hv2-auth-wrap {
    display: flex;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
}

/* LEFT DECORATIVE PANEL */
.hv2-auth-panel {
    display: none;
    width: 420px;
    flex-shrink: 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}
@media (min-width: 900px) {
    .hv2-auth-panel { display: flex; align-items: center; justify-content: center; }
}
.hv2-auth-panel-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 40px;
}
.hv2-auth-panel-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
}
.hv2-auth-panel-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* GEOMETRIC SHAPES */
.hv2-auth-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hv2-auth-geo-circle-lg {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid #5a67d8;
    opacity: 0.18;
    top: -60px;
    right: -80px;
}
.hv2-auth-geo-circle-sm {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #5a67d8;
    opacity: 0.12;
    bottom: 80px;
    left: 30px;
}
.hv2-auth-geo-square {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #5a67d8;
    opacity: 0.25;
    bottom: 140px;
    right: 48px;
    transform: rotate(18deg);
}
.hv2-auth-geo-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #5a67d8;
    opacity: 0.14;
    top: 52%;
}
.hv2-auth-geo-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #5a67d8;
    opacity: 0.1;
    left: 38%;
}

/* RIGHT FORM SIDE */
.hv2-auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px 24px;
}
.hv2-auth-card {
    width: 100%;
    max-width: 400px;
}

/* TITLE */
.hv2-auth-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}
.hv2-auth-accent-dot {
    width: 10px;
    height: 10px;
    background: #5a67d8;
    flex-shrink: 0;
}
.hv2-auth-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

/* FORM */
.hv2-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hv2-auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hv2-auth-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #777;
}
.hv2-auth-input {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.hv2-auth-input:focus {
    border-color: #5a67d8;
}
.hv2-auth-input[readonly] {
    background: #f9f9f9;
    color: #888;
}
.hv2-auth-error {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 2px;
}

/* REMEMBER ROW */
.hv2-auth-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.hv2-auth-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.hv2-auth-checkbox {
    accent-color: #5a67d8;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* SUBMIT BUTTON */
.hv2-auth-btn-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.hv2-auth-btn-submit:hover {
    background: #333;
}

/* DIVIDER */
.hv2-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 20px;
    color: #ccc;
    font-size: 12px;
}
.hv2-auth-divider::before,
.hv2-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

/* FOOTER TEXT */
.hv2-auth-footer-text {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin: 0 0 12px;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}
.hv2-auth-back {
    text-align: center;
    margin: 0;
}

/* LINKS */
.hv2-auth-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.hv2-auth-link:hover {
    color: #5a67d8;
}
.hv2-auth-link--muted {
    color: #aaa;
    font-size: 13px;
}
.hv2-auth-link--muted:hover {
    color: #5a67d8;
}

/* SUCCESS ALERT */
.hv2-auth-alert-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #276749;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* DESCRIPTION TEXT */
.hv2-auth-description {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* VERIFY PAGE BODY TEXT */
.hv2-auth-verify-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* LOGOUT LINK BUTTON */
.hv2-auth-btn-ghost {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.hv2-auth-btn-ghost:hover {
    color: #5a67d8;
}
