* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fff;
  background-image: radial-gradient(#999 5%, transparent 0);
  background-size: 35px 35px;
}

.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
  font-size: 18px;
}

input {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}

.next-btn {
  background-color: #000000;
  color: white;
}

.next-btn:hover {
  background-color: #F4B36B;
}

.prev-btn {
  background-color: #6c757d;
  color: white;
}

.prev-btn:hover {
  background-color: #5a6268;
}

/* Estilo para seleção de imagens no Step 4 */
.image-selection {
  display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
  align-items: flex-start;
	margin-bottom: 20px;
}

.image-selection label {
	cursor: pointer;
	max-width: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

label.checked {
	border-radius: 5px;
	background: #e0e0e0;
	box-shadow: inset 2px 2px 6px #bebebe,
            inset -2px -2px 6px #ffffff;
}

.image-selection img {
  border-radius: 5px;
	background: #ffffff;
	box-shadow:  1px 1px 3px #bebebe,
             -1px -1px 3px #ffffff;
	transition: 0.3s;
	border: 2px solid #00000000;
	margin-bottom: 5px;
}

.image-selection span {
	font-size: 0.8em;
}

.image-selection input[type="checkbox"] {
  display: none;
}

.image-selection input[type="checkbox"]:checked + img {
	border: 2px solid black;
	box-shadow:  4px 4px 12px #bebebe,
             -4px -4px 12px #ffffff;
}

