/* Newtheme auth layout — resources/views/newtheme/layouts/guest.blade.php
   Shared by login / register / forgot-password / reset-password /
   confirm-password / verify-email. */

body.auth-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background:
        radial-gradient(at 20% 0%, rgba(241, 90, 41, 0.10) 0%, transparent 50%),
        radial-gradient(at 80% 100%, rgba(241, 90, 41, 0.08) 0%, transparent 50%),
        var(--paper-2, #f4f2f0);
    font-family: 'Archivo', system-ui, sans-serif;
    color: var(--ink, #1c1a1b);
}

.auth-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    text-decoration: none;
    color: inherit;
}

.auth-brand:hover {
    text-decoration: none;
    color: inherit;
}

.auth-brand-logo {
    /* width: 60px; */
    height: 60px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.auth-brand-name {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent, #f15a29);
}

.auth-brand-tagline {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 0.04em;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent, #f15a29);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 28px 28px 26px;
}

.auth-card h1 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px;
}

.auth-lead {
    font-size: 13px;
    color: var(--ink-3);
    margin: 0 0 18px;
    line-height: 1.5;
}

.auth-field {
    margin-bottom: 14px;
}

.auth-field .lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.auth-field .input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
}

.auth-pw-wrap {
    position: relative;
}

.auth-pw-wrap .input {
    padding-right: 40px;
}

.auth-pw-eye {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    color: var(--ink-4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.auth-pw-eye:hover {
    color: var(--ink);
    background: var(--paper-2);
}

.auth-pw-eye svg {
    width: 18px;
    height: 18px;
}

.auth-err {
    font-size: 11.5px;
    color: var(--red, #c0392b);
    margin: 4px 0 0;
    list-style: none;
    padding: 0;
}

.auth-err li {
    margin: 0;
}

.auth-card .input.is-invalid {
    border-color: var(--red, #c0392b) !important;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12) !important;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.auth-actions .btn.primary {
    min-width: 120px;
    justify-content: center;
}

.auth-link {
    color: var(--accent, #f15a29);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-flash {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.auth-flash-success {
    background: var(--green-soft, rgba(39, 174, 96, 0.12));
    color: var(--green, #1f8c4d);
    border-left: 3px solid var(--green, #1f8c4d);
}

.auth-flash-error {
    background: var(--red-soft, rgba(192, 57, 43, 0.10));
    color: var(--red, #c0392b);
    border-left: 3px solid var(--red, #c0392b);
}

.auth-foot {
    text-align: center;
    font-size: 12px;
    color: var(--ink-4);
    margin-top: 18px;
}