body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
}
.container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}
.logo {
    max-width: 120px;
    margin-bottom: 10px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
button {
    background-color: #ff69b4;
    color: white;
    border: none;
    cursor: pointer;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
#horariosContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
#horariosContainer label {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
}
