body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.container {
    width: 400px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 20px rgba(0, 110, 255, 0.255);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;  
}

.logo {
    text-align: center;
}

.logo img {
    width: auto;
    height: 180px;
}

#login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-form input {
    width: 95%;
    height: 40px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

#login-form input:focus {
    border-color: #aaa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#login-button {
    width: 100%;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#login-button:hover {
    background-color: #0069d9;
}

.footer {
    margin-top: 20px;
    text-align: center;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

.footer a:hover {
    color: #0069d9;
}

/* REGISTRO */

.contenedor {
    width: 60%;
    margin: 5px auto;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 110, 255, 0.255);
    display: flex;
    flex-direction: column;
    justify-content: center;

}
  
form {
    margin-bottom: 20px;
}
  
label {
    display: block;
    margin-bottom: 10px;
}
  
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="date"] {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
}
  
button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
  
button:hover {
    background-color: #0069d9;
}

#sexo {
    width: 95%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #f2f2f2;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 110, 255, 0.255);
    text-align: center;
}
  
#sexo:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#canvas {
    border: 1px solid #ccc;
    margin: 20px auto;
    display: block;
    touch-action: none;
    background-color: white;
  }

#contrato {
    text-align: center;
}

/* Estilos para el modal */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
  
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
  
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
  
.scroll {
    overflow-y: auto;
    max-height: 300px;
    padding: 10px;
    border: 1px solid #ccc;
}

#btn-envio {
    position: relative;
    left: 20%;
    transform: translateX(-50%);
}

.pantalla-oscura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    z-index: 11;
}
  
#accept-cookies, #decline-cookies {
    position: relative;
    left: 20%;
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}
  
#decline-cookies {
    background-color: #e74c3c;
}



@media all and (min-width: 1200px) {
    html {
        font-size: 120%;
    }
}

@media (max-width: 480px) {

}

@media (max-width: 768px) {

}

@media (max-width: 992px) {

}

@media (max-width: 1200px) {

    .contenedor {
        width: 85%;
    
    }

    .container {
        width: 85%;
          
    }

}