body{

    background-color: #333;

}



header {

    padding: 15px;

    color: white;

}



.txt-navbar {

    background-color: rgb(197, 8, 8);

    padding: 5px 15px;

    border: 1px solid #333;

    border-radius: 5px;

    text-align: center;

}



nav ul {
    list-style: none;
    padding: 0;
}



nav ul li {
    display: inline;
    margin: 0 15px;
}



 nav ul li a {
    color: white;
    text-decoration: none;
}



nav ul li a:hover {
    text-decoration: underline;
    color: #333;
}



.formulario {
    background-color: rgba(241, 241, 241, 0.603);
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow:  0px 3px 10px #333 ;
}







.formulario h2 {
    text-align: center;
    color: #202020;
}







.formulario p {



    text-align: justify;



    color: #202020;



    margin-bottom: 20px;



}







form label {



    display: flex;



    color: #202020;



}







.input{



    width: 100%;



    padding: 10px;



    margin-bottom: 20px;



    border: 1px solid #202020;



    border-radius: 5px;



    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */



}







form input[type="submit"] {



    margin: 0 auto;



    display: block;



    background-color: rgb(228, 6, 6);



    padding: 15px 20px;



    color: white;



    border: none;



    font-size: 16px;



    width: 50%;



    border-radius: 5px;



    cursor: pointer;



}







form input[type="submit"]:hover{



    background-color:  rgb(116, 4, 4);



}





select{



    width: 50%;

    padding: 10px;

    border: 1px solid #ccc;

    border-radius: 5px;



}







textarea{
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.btn {
  position: relative;
  padding: 2rem 4rem;
  font-size: 1rem;
  font-weight: 600;
  color: black;
  background: none;
  border: 2px solid #E6002B;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center-right;
}

.titulo1{
    color: #202020;
}


.liquid {
  background: linear-gradient(#E6002B 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}





.liquid:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}




.body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #FFFFFF;
  font-family: "Inter", sans-serif;
}





.imagen{
	display: flex;
	text-align: center;
	margin: 20px;
	width: 8cm;
	height: 8cm;
}





.texto{
	text-align: center;
	padding: 20px;
}





.centrar{
	text-align: center;
	margin: 20px;
}


.tabla-registros {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.tabla-registros thead tr {
    background-color: #333;
    color: white;
    text-align: left;
    font-weight: bold;
}

.tabla-registros thead th {
    padding: 12px;
    border-bottom: 2px solid #555;
    background-color: #7a0808;
}

.tabla-registros tbody td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #202020;
    color: #FFFFFF;
}

footer{
    color: #FFFFFF;
}


