
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background-color: #f0f0f0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 32px;
  width: 90%;
  max-width: 400px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

label {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  padding: 8px;
}

.btn-group {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn {
background-color: #3B99FC;
border: none;
border-radius: 4px;
color: #fff;
cursor: pointer;
font-size: 1rem;
padding: 8px 16px;
transition: all 0.3s ease;
}

.btn:hover {
background-color: #3F3D56;
}

.btn:focus {
outline: none;
}

.error {
color: #ff0000;
font-size: 0.875rem;
margin-top: 4px;
}

@media only screen and (max-width: 600px) {
form {
padding: 16px;
width: 100%;
max-width: none;
}
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    text-align: center;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input[type="date"], input[type="time"], select {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Estilos específicos */
p {
    margin-top: 0;
    margin-bottom: 20px;
}
