body {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
    align-items: center;
}

.container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.table {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.card {
    width: 60px;
    height: 90px;
    border: 2px solid #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #ffffff;
    border-radius: 8px;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.results {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button_task{
    background-color: #f4f4f4;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.button_task_aprovado{
    background-color: #f4f4f4;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.bEntrar {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 35px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    color: white;
}

h2 {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 10px;
    margin: 5px auto;
    width: 50%;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #333;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

 .input-estilizado {
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            box-sizing: border-box;
            border: 2px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            background-color: #f8f8f8;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Estilo quando o input está em foco */
        .input-estilizado:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
            outline: none;
        }

        /* Estilo quando o input está preenchido */
        .input-estilizado:not(:placeholder-shown) {
            border-color: #4CAF50;
        }

        /* Estilo para o placeholder */
        .input-estilizado::placeholder {
            color: #999;
            font-style: italic;
        }

        /* Estilo para o hover (opcional) */
        .input-estilizado:hover {
            border-color: #888;
        }