@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    background-color: #f4f4f4;
}

.menu {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    background-color: #07C378;
    color: white;
    height: 40px;
    padding-top: 10px;
    padding-left: 10px;
}

.item {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
}

form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
}

.conteudo {
    padding: 20px;
    height: auto;
    min-height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    width: 100%;
    max-width: 220px;
    padding: 12px 0;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: #07c378;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

label {
    font-weight: 500;
    color: #333;
}

input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    
}

.horarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
    .menu {
        font-size: 18px;
        padding-left: 10px;
    }

    button {
        font-size: 16px;
    }
}