body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
}

header {
  background: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #a57acc;
}

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-left: auto;
}


.perfil {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 60px);
}

.form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.form-container h1 {
  text-align: center;
  margin-bottom: 25px;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: 0.3s;
}

form input:focus {
  border-color: #ffcc00;
  outline: none;
  box-shadow: 0 0 5px rgba(255,204,0,0.5);
}

button {
  width: 100%;
  padding: 14px;
  background: #ffcc00;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e6b800;
}
/*cmcaq*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}


header {
  background: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

header nav {
  display: flex;
}

header nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
}


.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px;
  color: white;
}

.banner-content {
  max-width: 600px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner p {
  font-size: 20px;
}

.banner button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}


.container, .form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}



@media (max-width: 768px) {

  
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  header nav {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  header nav a {
    margin: 8px 0;
    font-size: 18px;
  }

 
  .banner {
    height: 50vh;
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner h1 {
    font-size: 28px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    font-size: 16px;
    padding: 10px 20px;
  }

 
  .container, .form-container {
    padding: 20px;
    margin: 10px;
  }

 
  form input {
    font-size: 16px;
    padding: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 22px;
  }
  .banner p {
    font-size: 14px;
  }
  header nav a {
    font-size: 14px;
  }
}
