
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.container {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 400px;
}
 
.nome{
    margin-left: -10px;;
}

.horario{
    margin-left: -10px;
}

.data{
    margin-left: -10px;
}

h1, h2 {
    margin-bottom: 10px;
    font-weight: 600;
}


form {
    display: flex;
    flex-direction: column;
}

input, button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

input {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-align: center;
}

input::placeholder {
    color: #ddd;
}

button {
    background: #27ae60;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #219150;
}


ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

li {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    font-weight: bold;
}


li:hover {
    background: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}
