:root {
    --preto-profundo: #0a0a0b;
    --cinza-chumbo: #161b22;
    --azul-ciano: #00f2ff;
    --verde-eletrico: #00ff88; 
    --texto-principal: #f5f5f7;
    --texto-suave:#8b949e;
}


/* Importamos as variáveis se elas estiverem no main.css, 
   caso contrário, mantenha o :root no topo deste arquivo */

.cadastro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
    padding-bottom: 100px;
    background-color: var(--preto-profundo);
    /* background-color: red; */
}

.cadastro-card {
    
    background: var(--cinza-chumbo);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    border: 1px solid #30363d; /* Um contorno sutil para profundidade */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Sistema de Abas */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: #0d1117;
    padding: 5px;
    border-radius: 8px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--texto-suave);
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    /* background-color: red; */
}

.tab-btn:hover {
    color: var(--texto-principal);
}

.tab-btn.active {
    background: var(--cinza-chumbo);
    color: var(--verde-eletrico);
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
}

/* Inputs Padronizados */
.input-group h3 {
    color: var(--azul-ciano);
    margin-bottom: 15px;
    font-size: 1.2rem;
    
}

.input-group input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: var(--preto-profundo);
    border: 1px solid #30363d;
    color: var(--texto-principal);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--azul-ciano);
}

/* Botão de Ação */
.btn-cadastrar {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: var(--verde-eletrico);
    color: var(--preto-profundo);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.btn-cadastrar:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

.tab-content > h3 {
    color: var(--azul-ciano);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.tab-content > p {
    color: var(--texto-suave);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}