/* Container principal do formulário */
form.registro, form.loginForm {
    width: 40%;
    font-size:1rem;
    border-radius: 10px; /* Borda arredondada para visual mais suave */    
}

form.loginForm {
    width: 35%;
}

.registro fieldset, .loginForm fieldset, form.uploadForm fieldset {
    border: 1px solid #555; /* Borda discreta */
    padding: 2%;
    margin-bottom: 1.3%;
    border-radius: 8px; /* Deixa os fieldsets mais suaves */
    background-color:#000000ff;;
    width: 100%;
    display: flex;
    align-items: center; /* Alinha verticalmente o label e o input */
    gap: 1rem; /* Espaço entre o label e o input */
}

.registro label, .uploadForm label , .loginForm label{
    font-weight: bold;
    text-align: left;
    flex: 0 0 30%; /* Não cresce, não encolhe, base de 120px de largura */
    text-align: right; /* Alinha o texto do label à direita para ficar perto do input */
    font-size:1.1rem;
}

.registro input, form.uploadForm input , .loginForm input{
    flex: 1; /* Ocupa todo o espaço restante */
    width: 100%; /* Garante que o input preencha o espaço do flex item */
    padding: 0.6%;
    color:black;
}

.registro button, .loginForm  button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.registro button:hover {
    background-color: #45a049;
    font-weight: bold;
}

.toggle-password {    
    cursor: pointer;
}

.error {
  /* Cor e Fonte */
  color: #e74c3c; /* Um tom de vermelho forte, mas não agressivo */
  font-size: 0.9rem; /* Um pouco menor que o texto normal (aprox. 14px) */
  font-weight: 700; /* Um peso de fonte médio para dar destaque */
  
  /* Layout e Espaçamento */
  display: block; /* Garante que a mensagem ocupe sua própria linha */
  width:97%;
  text-align: center; /* Alinha o texto à esquerda, abaixo do campo */
  margin-top: 2px; /* Adiciona um pequeno espaço acima da mensagem */
  margin-bottom: 1.5%;
  background-color: beige;
  
}

.forgot-password {
    margin-top: 12px;
    text-align: center;
}

.forgot-password a {
    color: #d8dbdf;
    letter-spacing: 0.02em;
}

.forgot-password a:hover {
    color: #fc3c45;
}

.menuUserCorpo {
    padding: 0;
}

.premium-box {
    background: #111;
    border: 0.0625rem solid #222;
    border-radius: 0.75rem;

    padding: 1.25rem;
    width: 32rem;
    max-width: 92vw;

    margin: 0.3rem auto;
}

.verificacao-header h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.5rem;
    color: #fff;
}

.verificacao-header p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: #bbb;
    line-height: 1.5;
}

.verificacao-acoes {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.confirmar-codigo label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #aaa;
}

.confirmar-codigo input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #333;
    background: #000;
    color: #fff;
    font-size: 1rem;
}

.botaoUser {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.botaoUser.primario {
    background: #00c853;
    color: #000;
}

.botaoUser.primario:hover {
    background: #00b44a;
}

.botaoUser.secundario {
    background: #222;
    color: #fff;
}

.botaoUser.secundario:hover {
    background: #2a2a2a;
}

.verificacao-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #777;
    line-height: 1.4;
}

.panel-menu {
    background: #0f0f0f;
    border-bottom: 0.0625rem solid #222;
    padding: 0.75rem 1rem;
}

.panel-menu-list {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
}
.panel-menu-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;

    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
}

.panel-menu-list i {
    font-size: 1rem;
}

.panel-menu-list a:hover {
    background: #1a1a1a;
    color: #fff;
}

.panel-menu-list a.active {
    background: #00c853;
    color: #000;
}

.menu-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;

    background: #1a1a1a;
    color: #ffb300;
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    form.registro, form.loginForm {
        width: 70%;
        font-size:0.9rem;
    }


    .registro label{
        font-size:0.9rem;
    }


    .premium-box {
        padding: 1rem;
    }

    .botaoUser {
        font-size: 0.9rem;
    }

    .panel-menu-list {
        gap: 0.5rem;
    }

    .panel-menu-list span {
        display: none;
    }

}/* MOBILE