body {
    font-family: Arial, sans-serif;
    background-image: url('fondouda.jpg'), linear-gradient(90deg, rgb(255, 255, 255) 37%, #240a0b 60%, #7b1216 100%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.principal {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.listado {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px;
}

h1 {
    text-align: center;
    color: #E30613;
    margin-bottom: 20px;
}
h3 {
    text-align: center;
    color: #721119;
    margin-bottom: 20px;
    font-size: x-large;
}

.claseFormu {
    margin-bottom: 15px;
}

.claseFormu label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.claseFormu input[type="text"],
.claseFormu input[type="password"],
.claseFormu input[type="date"],
.claseFormu input[type="tel"],
.claseFormu select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.checkTerminos {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.logo192 img{
  display: block; 
  margin-left: auto;
  margin-right: auto;
}
.checkTerminos input[type="checkbox"] {
    margin-right: 10px;
}

button {
    width: 100%;
    background-color: #E30613;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #A9040D;
}

.precio {
    font-size: 18px;
    font-weight: bold;
    color: #E30613;
}

.separador {
    border-top: 1px dashed #333;
    margin: 15px 0;
}

.detalle {
    display: flex;
    justify-content: space-between;
}

.rojo {
    font-size: 14px;
    font-weight: lighter;
    color: #E30613;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
}

th {
    background-color: #d37171;
}

.oro {
    color: goldenrod;
}

.plata {
    color: silver;
}

.bronce {
    color: #cd7f32;
}

.log-container {
    position: fixed; 
    top: 20px;       
    right: 20px;     
    z-index: 1000;   
}

.log-button {
    background-color: #E30613; 
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.log-button:hover {
    background-color: #A9040D; 
}