/* estilo.css */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centralizado {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    border: 1px solid #ddd;
    text-align: center;
}

h1 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 25px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 12px;
}

input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Adicionado para o form Gerencia_usuario */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #ecf0f1;
    color: #2c3e50;
    font-size: 12px;
}

.form-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

input[type="password"] {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}

.btn-excluir {
    background-color: #e74c3c;
}

.btn-excluir:hover {
    background-color: #c0392b;
}
