* {
  margin: 0;
  padding: 0;
  font-family: "Barlow";
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.header {
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
  padding: 16px;
}

.header img {
  width: 180px;
  height: auto;
}

.container {
  padding: 0 16px;
  padding-bottom: 120px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.title {
  text-align: center;
  color: black;
  font-size: 28px;
  font-family: "Barlow";
  font-weight: 500;
}

.decoration {
  margin-top: -70px;
  z-index: -1;
}

.decoration img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .decoration {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .decoration img {
    max-width: 600px;
    margin: 0 auto;
  }
}

.description {
  text-align: center;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

span {
  color: black;
  font-size: 16px;
  font-family: "Barlow";
  font-weight: 400;
}

@media (min-width: 768px) {
  .description {
    max-width: 640px;
    margin: 0 auto;
  }
}

.premios {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.premios img {
  filter: drop-shadow(5px 5px 5px black);
  width: 80px;
  max-width: 200px;
  height: auto;
}

.instructions {
  text-align: left;
  margin-bottom: 40px;
}

.instructions h3 {
  text-align: center;
}

.participation {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-form label {
  padding-top: 5px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 12px;
}

.input-text {
  width: 100%;
  padding: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.login-form button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background-color: #00ffdd;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.login-form button:hover {
  background-color: #00c9cc;
}

fieldset {
  border: 2px solid #ddd;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.fieldset-input {
  margin-bottom: 0px;
  font-weight: 0;
}

.label input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

legend {
  font-size: 20px;
  font-weight: bold;
}

label {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .participation {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .login-form {
    min-width: 400px;
    flex: 1;
  }
}
