body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdeef4;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  background-color: #e91e63;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form {
  width: 90%;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #e91e63;
}

form h2 {
  text-align: center;
  color: #e91e63;
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-top: 12px;
  color: #333;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
  transition: all 0.2s ease;
}

input:focus, select:focus {
  border-color: #e91e63;
  box-shadow: 0 0 6px rgba(233, 30, 99, 0.3);
  outline: none;
}

button {
  width: 100%;
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #d81b60;
}

a {
  display: inline-block;
  text-align: center;
  margin-top: 15px;
  color: #6a1b9a;
  text-decoration: none;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn-guardar {
  flex: 1;
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.btn-guardar:hover {
  background-color: #d81b60;
  transform: scale(1.02);
}

.btn-cancelar {
  flex: 1;
  background-color: #f5f5f5;
  color: #6a1b9a;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cancelar:hover {
  background-color: #ede7f6;
  border-color: #6a1b9a;
  transform: scale(1.02);
}
