/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Corpo */
body {
    background: #f4f6f9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container central */
.container {
    display: flex;
    flex-direction: column; /* 👈 tudo em coluna */
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Título */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Subtítulo */
p {
    color: #555;
    margin-bottom: 25px;
}

/* Área dos botões */
.botoes {
    display: flex;
    flex-direction: column; /* 👈 botões em coluna */
    gap: 15px;
    width: 100%;
}

/* Form ocupa toda largura */
form {
    width: 100%;
}

/* Botões padrão */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* Botão inserir */
.btn {
    background-color: #4CAF50;
    color: white;
}

.btn:hover {
    background-color: #45a049;
}

/* Botão visualizar */
.bin-bin-secundaria {
    background-color: #007BFF;
    color: white;
}

.bin-bin-secundaria:hover {
    background-color: #0069d9;
}