body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #002b70;
  color: white;
  padding: 20px;
  text-align: center;
}

.logo {
  height: 50px;
  margin-bottom: 10px;
}

.container {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1,
h2 {
  margin: 10px 0;
}

form {
  width: 100%;
  max-width: 400px;
}

label {
  display: block;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
input[type="checkbox"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #b00020;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #b00020;
  border-radius: 4px;
  font-size: 16px;
  height: 100px;
}

.clearfix {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.prev-btn,
.next-btn {
  background-color: #b00020;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

footer {
  background-color: #002b70;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.instagram {
  height: 20px;
  margin-top: 10px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #b00020;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step.active,
.step.completed {
  background-color: #b00020;
}

@media (max-width: 600px) {
  .logo {
    height: 30px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  input[type="checkbox"] {
    font-size: 14px;
  }

  .prev-btn,
  .next-btn {
    font-size: 14px;
  }
}
