body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

.progress-container {
    margin: 1rem auto;
    width: 80%;
}

.progress-bar {
    display: flex;
    align-items: center;
}

.step {
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0; /* Impede que o flex encolha a bolinha */
    line-height: 30px; /* Garante alinhamento vertical perfeito do texto */
}

.step.completed {
    background: #4CAF50;
    color: white;
}

.line {
    flex: 1;
    height: 5px;
    background: #ccc;
}

form {
    width: 80%;
    margin: 1rem auto;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    background: #4CAF50;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
