body {
  margin: 0;
  padding: 0;
  background-image: url(/img/fondo02.png);
  background-size: cover;
  color: #333;
  text-align: center;
}

header {
  background-color: #ffd200;
  padding: 10px 20px;
}

p{
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);
}

.registro {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.ptone{
  display: flex;
  justify-content: space-evenly;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}

.ptwo{
  display: flex;
  justify-content: space-evenly;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}

.checkbox-group {
  text-align: left;
  margin-bottom: 20px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}
a{
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}
.checkbox-group label {
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 10px 30px;
  font-size: 16px;

  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
}

.text3{
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.button:hover {
  opacity: 0.9;
}
/* Media Queries */

/* Para pantallas pequeñas (teléfonos) */
@media (max-width: 600px) {
  .registro {
    padding: 20px;
    max-width: 90%;
  }

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 12px;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
  .ptone{
    display: flex;
    flex-direction: column;
  }
  .ptwo{
    display: flex;
    flex-direction: column;
  }
}

/* Para tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .registro {
    max-width: 80%;
  }

  h1 {
    font-size: 22px;
  }

  p {
    font-size: 13px;
  }

  button {
    font-size: 15px;
  }
  .ptone{
    display: flex;
    flex-direction: column;
  }
  .ptwo{
    display: flex;
    flex-direction: column;
  }
}

/* Para pantallas grandes (computadoras) */
@media (min-width: 1025px) {
  .registro {
    max-width: 500px;
  }
}
