/* Fundo da página (Centraliza tudo) */
.plugin-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Ocupa quase toda altura da tela */
    background-color: #f8f9fa; /* Fundo cinza bem claro */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* O Cartão de Login */
.plugin-login-box {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Sombra suave moderna */
    text-align: center;
}

/* Título e Subtítulo */
.plugin-login-title {
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
}

.plugin-login-subtitle {
    margin: 0 0 30px;
    color: #64748b;
    font-size: 14px;
}

/* Campos de Input */
.plugin-login-group {
    margin-bottom: 20px;
    text-align: left;
}

.plugin-login-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

.plugin-login-input:focus {
    outline: none;
    border-color: #008cba; /* Azul do seu tema */
    box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.1);
}

/* Botão de Login */
.plugin-login-btn {
    width: 100%;
    padding: 12px;
    background-color: #008cba;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.plugin-login-btn:hover {
    background-color: #00779e;
}

/* Mensagens de Erro e Sucesso */
.plugin-login-error, 
.plugin-login-success {
    font-size: 13px;
    margin-bottom: 15px;
    display: none; /* Escondido por padrão, o JS mostra */
    padding: 10px;
    border-radius: 6px;
}

.plugin-login-error {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.plugin-login-success {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Link de 'Sair' caso esteja logado */
.plugin-login-alert {
    background: #e0f2fe;
    color: #0369a1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}