/* ─────────────────────────────────────────
   Plugsys · Login Page
   Paleta: preto #0a0a0a, dourado #d4af37
───────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── LAYOUT SPLIT ── */
.screen {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ══════════════════════════════════════
   LADO ESQUERDO — Formulário
══════════════════════════════════════ */
.left {
    width: 42%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 56px;
}

/* Logo */
.logo-area {
    text-align: center;
    margin-bottom: 32px;
}

.logo-mark {
    width: 52px;
    height: 52px;
    background: #000;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-mark svg {
    width: 28px;
    height: 28px;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
}

/* Títulos */
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 28px;
}

/* Alerta de erro */
.alert-error {
    width: 100%;
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #b91c1c;
    margin-bottom: 16px;
    text-align: center;
}

/* Campos */
form {
    width: 100%;
}

.field {
    width: 100%;
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.field input {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e5e5e5;
    border-radius: 50px;
    font-size: 14px;
    color: #111;
    outline: none;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.field input::placeholder {
    color: #bbb;
}

/* Campo senha com botão olho */
.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 48px;
}

.toggle-pw {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.toggle-pw svg {
    width: 20px;
    height: 20px;
}

/* Links */
.forgot-row {
    width: 100%;
    text-align: right;
    margin-bottom: 8px;
}

.forgot-row a {
    font-size: 13px;
    color: #888;
    text-decoration: underline;
    transition: color 0.2s;
}

.forgot-row a:hover {
    color: #d4af37;
}

/* Remember me */
.remember-row {
    width: 100%;
    margin-bottom: 20px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #777;
    cursor: pointer;
}

.remember input {
    accent-color: #d4af37;
    width: 15px;
    height: 15px;
}

/* Botão entrar */
.btn-enter {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-bottom: 20px;
}

.btn-enter:hover {
    background: #c9a227;
}

.btn-enter:active {
    transform: scale(0.98);
}

/* Rodapé do form */
.register-txt {
    font-size: 13px;
    color: #999;
    text-align: center;
}

.register-txt a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
}

.privacy-txt {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 10px;
}

.privacy-txt a {
    color: #999;
    text-decoration: underline;
}

/* ══════════════════════════════════════
   LADO DIREITO — Painel de destaque
══════════════════════════════════════ */
.right {
    flex: 1;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}

/* Brilho de fundo */
.right::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

/* Pills */
.pills {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pill {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4af37;
}

/* Título direito */
.right-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 28px;
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.right-title span {
    color: #d4af37;
}

/* Card promo */
.promo-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 22px 24px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.promo-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.promo-icon {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon svg {
    width: 14px;
    height: 14px;
}

.promo-channel {
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
}

/* Tags de feature */
.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ftag {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    color: #d4af37;
}

/* Speaker */
.speaker {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.speaker-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #8b6914);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.speaker-pre {
    font-size: 10px;
    color: #555;
    margin-bottom: 2px;
}

.speaker-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.speaker-role {
    font-size: 11px;
    color: #555;
}

/* Descrição */
.promo-desc {
    font-size: 13px;
    color: #555;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 340px;
    position: relative;
    z-index: 1;
}

/* Botão promo */
.btn-promo {
    padding: 13px 32px;
    background: #d4af37;
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
    position: relative;
    z-index: 1;
}

.btn-promo:hover {
    background: #c9a227;
}

.btn-promo:active {
    transform: scale(0.97);
}

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 900px) {
    .screen {
        flex-direction: column;
    }

    .left {
        width: 100%;
        padding: 48px 32px;
    }

    .right {
        padding: 48px 24px;
    }

    .right-title {
        font-size: 22px;
    }
}
a{
    text-decoration:  none;
    color: #fff;
}

@media (max-width: 480px) {
    .left {
        padding: 36px 24px;
    }

    .form-title {
        font-size: 20px;
    }
}