* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.container {
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    margin-bottom: 15px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

input[type="file"],
input[type="number"],
button {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4cae4c;
}

/* Estilo para a seção de passo a passo */
.step-by-step {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    max-width: 650px;
    margin-top: 20px;
    padding: 10px;
    gap: 10px;
}

.step {
    text-align: center;
    flex: 1;
}

.step img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Tornando a imagem circular */
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Número do passo */
.step-number {
    width: 30px;
    height: 30px;
    background-color: #5cb85c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto 10px;
}
/* Estilos para colocar "Linhas" e "Colunas" lado a lado */

.form-row-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin: 0 0 5px;
    width: auto;
}

.input-group input[type="number"] {
    width: 100%;
    max-width: none;
}
