:root {
    --bg-main: #0b1220;
    --bg-card: #111827;
    --bg-input: #020617;
    --border: #1f2937;

    --green: #22c55e;
    --red: #ef4444;
    --yellow: #facc15;
    --gray: #64748b;

    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: var(--text-main);
    min-height: 100vh;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* ===== CARD ===== */
.card {
    background: linear-gradient(180deg, #020617, #020617);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 50px rgba(0,0,0,.55);
}

/* ===== HEADER ===== */
.card h1 {
    font-size: 26px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .5px;
}

/* ===== FORM ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-muted);
}

/* ===== INPUTS ===== */
select,
textarea {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    color: var(--text-main);
    font-size: 14px;
    transition: .2s;
}

textarea {
    min-height: 220px;
    resize: vertical;
}

select:focus,
textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(34,197,94,.15);
}

/* ===== BUTTON ===== */
.actions {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #020617;
    border: none;
    border-radius: 14px;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: .25s;
}

button:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* ===== TABLE ===== */
.table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
}

.table th {
    text-align: left;
    padding: 14px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.table tr:hover {
    background: rgba(255,255,255,.03);
}

/* ===== BADGES ===== */
.badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.presente {
    background: var(--green);
    color: #020617;
}

.ausente {
    background: var(--red);
}

.atencao {
    background: var(--yellow);
    color: #020617;
}

.nao_respondeu {
    background: var(--gray);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #020617, #020617);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    width: 420px;
    box-shadow: 0 30px 60px rgba(0,0,0,.6);
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-content li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

input[type="text"],
input[type="date"] {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    color: var(--text-main);
    font-size: 14px;
}

input[type="text"]:focus,
input[type="date"]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(34,197,94,.15);
}

/* ===== AÇÕES DA TABELA ===== */
.table-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.table-actions .action {
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

.table-actions .action.edit {
    color: #facc15;
}

.table-actions .action.delete {
    color: #ef4444;
}

.table-actions .action:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* PAINEL NOVO MEMBRO */
.form-panel {
    margin-top: 20px;
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 16px;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transition: all .35s ease;
    padding: 0 24px;
}

.form-panel.active {
    max-height: 500px;
    opacity: 1;
    padding: 24px;
}

/* HEADER */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 20px;
    font-weight: 600;
}

/* BOTÃO FECHAR */
.close-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 26px;
    cursor: pointer;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

/* INPUTS */
.form-group input,
.form-group select {
    background: #020617;
    border: 1px solid #1e293b;
    color:
    
/* adicionado UX aqui */
/* =========================
   BOTÕES
========================= */

.btn-primary,
.btn-secondary {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s ease;
    text-decoration: none;
}

.btn-primary {
    background: #111;
    color: #fff;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #e5e5e5;
    color: #333;
}

.btn-secondary:hover {
    background: #d4d4d4;
}

/* ÍCONES DE AÇÃO */
.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-icon.edit {
    background: #2563eb;
    color: #fff;
}

.btn-icon.edit:hover {
    background: #1e40af;
}

.btn-icon.delete {
    background: #dc2626;
    color: #fff;
}

.btn-icon.delete:hover {
    background: #991b1b;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th {
    background: #f5f5f5;
    text-align: left;
    font-size: 14px;
    padding: 12px;
    color: #333;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.table tr:hover {
    background: #fafafa;
}

.actions {
    display: flex;
    gap: 8px;
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
}
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.card-header {
    margin-bottom: 20px;
}

.card-header h1 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* =========================
   TOAST MESSAGES
========================= */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 280px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 9999;
    animation: slideIn .3s ease, fadeOut .3s ease 4s forwards;
}

.toast.success {
    background: #16a34a;
}

.toast.error {
    background: #dc2626;
}

.toast i {
    margin-right: 8px;
}

/* animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Cancelar edição (mesmo tamanho do salvar) */

}
.btn-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.btn-icon.cancel {
    background: #6b7280;
    color: #fff;
}

.btn-icon.cancel:hover {
    background: #4b5563;
}
.actions .btn-icon {
    width: 38px !important;
    height: 38px !important;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 16px;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat strong {
    font-size: 28px;
}

.stat.success { border-left: 5px solid #22c55e; }
.stat.danger  { border-left: 5px solid #ef4444; }
.stat.warning { border-left: 5px solid #f59e0b; }

.dashboard-graphs {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 20px;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.dashboard-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.subtitle {
    opacity: .7;
    margin-bottom: 20px;
}
/* ===== BASE ===== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #e5e7eb;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #020617;
    padding: 20px 15px;
    overflow-y: auto;
    z-index: 1000;
    transition: transform .3s ease;
}

/* ===== CONTEÚDO ===== */
.container {
    margin-left: 260px;
    padding: 25px;
    min-height: 100vh;
    box-sizing: border-box;
}

/* ===== BOTÃO MOBILE ===== */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    background: #020617;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    z-index: 2000;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .container {
        margin-left: 0;
        padding: 80px 15px 20px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* =========================
   SIDEBAR – BASE
========================= */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #292929;
    padding: 20px 12px;
    overflow-y: auto;
    z-index: 1001;
}

/* LOGO */
.sidebar .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.sidebar .logo img {
    max-width: 140px;
}

/* MENU */
.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 12px;
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s ease;
}

.sidebar nav a i {
    font-size: 18px;
    min-width: 22px;
    text-align: center;
}

.sidebar nav a:hover {
    background: rgba(255,255,255,.06);
}

/* =========================
   CONTEÚDO
========================= */

.container {
    margin-left: 260px;
    padding: 25px;
    transition: margin .3s ease;
}

/* =========================
   OVERLAY MOBILE
========================= */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1000;
    display: none;
}

/* =========================
   BOTÃO MOBILE
========================= */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: #020617;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    z-index: 1100;
}

/* =========================
   MOBILE STYLE
========================= */

@media (max-width: 900px) {

    .sidebar {
        transform: translateX(-100%);
        transition: transform .3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .container {
        margin-left: 0;
        padding: 8px 16px 20px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-overlay.active {
        display: block;
    }
}

/* =========================
   TOAST
========================= */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 260px;
    padding: 14px 18px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn .3s ease, fadeOut .3s ease 4s forwards;
}

.toast.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}
.search-select {
    position: relative;
}

.search-select input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: #020617;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
}

.search-select .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #020617;
    max-height: 240px;
    overflow-y: auto;
    border-radius: 10px;
    z-index: 999;
    border: 1px solid rgba(255,255,255,.1);
}

.search-select .option {
    padding: 10px;
    cursor: pointer;
}

.search-select .option small {
    display: block;
    opacity: .6;
    font-size: 12px;
}

.search-select .option:hover {
    background: rgba(34,197,94,.2);
}
.card.stat {
    position: relative;
    padding-top: 28px;
}

.card.stat i {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    opacity: 0.25;
}

/* CORES */
.card.info {
    border-left: 4px solid #3b82f6;
}

.card.purple {
    border-left: 4px solid #8b5cf6;
}

.card.neutral {
    border-left: 4px solid #64748b;
}

.card.success {
    border-left: 4px solid #22c55e;
}

.card.warning {
    border-left: 4px solid #facc15;
}

.card.danger {
    border-left: 4px solid #ef4444;
}
.card.ranking {
    background: #111;
}

.ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-item .medal {
    font-size: 1.4rem;
}

.ranking-item .division {
    flex: 1;
    margin-left: 10px;
}
.card.highlight {
    position: relative;
    padding-left: 18px;
    
}
.card.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}
.card.highlight.info::before {
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}
.card.highlight.gold::before {
    background: linear-gradient(180deg, #facc15, #ca8a04);
}
.low-presence {
    max-height: 320px;
    display: flex;
    flex-direction: column;
}
.low-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    overflow-y: auto;
    padding-right: 6px;
}
.low-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    overflow-y: auto;
    padding-right: 6px;
}
.low-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.low-item strong {
    color: #f87171; /* vermelho elegante */
    font-weight: 600;
}
/* Corrige gráficos no mobile */
.card canvas {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
}
.dashboard-grid,
.dashboard-grid-bottom {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {

    .dashboard-grid,
    .dashboard-grid-bottom {
        grid-template-columns: 1fr;
    }

    .card {
        overflow-x: hidden;
    }
}
/* =========================
   MOBILE HEADER
========================= */

.mobile-header {
    display: none;
}

@media (max-width: 768px) {

    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #292929;
        z-index: 1100;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-brand img {
        height: 36px;
    }

    .mobile-brand span {
        font-size: 15px;
        font-weight: 600;
        color: #e5e7eb;
        letter-spacing: .3px;
        white-space: nowrap;
    }

    body {
        padding-top: 60px;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .mobile-menu-btn {
        top: 12px;
        left: 12px;
        z-index: 1200;
    }
}
/* =========================
   DASHBOARD HERO
========================= */

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #020617, #020617);
    border-left: 5px solid #22c55e;
}

.hero-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-left img {
    height: 52px;
}

.hero-left h1 {
    font-size: 22px;
    margin: 0;
    color: #e5e7eb;
}

.hero-left span {
    font-size: 13px;
    color: #9ca3af;
}

.hero-right {
    display: flex;
    align-items: center;
}

.hero-status {
    background: rgba(34,197,94,.15);
    color: #22c55e;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
    }

    .hero-left h1 {
        font-size: 18px;
    }

    .hero-left img {
        height: 44px;
    }

    .hero-right {
        width: 100%;
        justify-content: flex-start;
    }
}
/* =========================
   SIDEBAR MODERNA
========================= */

.sidebar {
    background: linear-gradient(180deg, #020617, #020617);
    width: 260px;
    padding: 20px 14px;
    border-right: 1px solid rgba(255,255,255,.06);
}

/* LOGO */
.sidebar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.sidebar .logo img {
    max-width: 120px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,.4));
}


/* NAV */
.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ecfdf5;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
}
.sidebar-close {
    display: none;
}


/* ÍCONE */
.sidebar nav a i {
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: #bbf7d0;
}


/* HOVER */
.sidebar nav a:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
}

/* ACTIVE */
.sidebar nav a.active {
    background: rgba(34,197,94,.25);
    color: #22c55e;
    box-shadow: inset 4px 0 0 #22c55e;
}

.sidebar nav a.active i {
    color: #22c55e;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {

    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        transform: translateX(-100%);
        z-index: 1000;
        transition: transform .25s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }
}
.sidebar nav::before {
    content: "MENU";
    font-size: 11px;
    color: #64748b;
    letter-spacing: .12em;
    padding: 0 14px 6px;
}
/* ===============================
   SIDEBAR MOBILE (APP STYLE)
================================ */
@media (max-width: 768px) {

    .sidebar {
        position: fixed;
        inset: 0;
        width: 85%;
        max-width: 320px;
        background: #0f172a;
        transform: translateX(-100%);
        transition: .3s ease;
        z-index: 9999;
        padding-top: 60px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.7);
        z-index: 9998;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }

    /* LOGO MENOR NO MOBILE */
    .sidebar .logo img {
        max-width: 50px;
        margin: 0 auto 10px;
        display: block;
    }

    /* BOTÃO FECHAR */
    .sidebar-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
        z-index: 10000;
    }

    /* Ajuste container para não ficar por baixo */
    .container {
        margin-left: 0 !important;
        padding-top: 7px;
    }
}
.sidebar-footer {
    margin-top: auto;
    padding: 15px;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    color: #ffb4b4;
    background: rgba(255,0,0,.08);
    transition: .2s;
}

.logout-btn:hover {
    background: rgba(255,0,0,.18);
    color: #fff;
}
.user-info {
    padding: 12px 15px;
    color: #a7f3d0;
    font-size: 14px;
    opacity: .85;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 12px 44px 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fafafa;
}

.password-wrapper input:focus {
    outline: none;
    border-color: #111;
    background: #fff;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 16px;
}

.toggle-password:hover {
    color: #111;
}

