
        
       body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;

    color: #333;
}


.login-flex{
   display: flex;
}
.boton-enlace{
    padding: 10px;
    background: #222;
    color: aliceblue;
    border: none;
    text-decoration: none;
 margin: 7px;
}

.contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
  
}

img {
    width: 100%;
   margin: auto;
    height: auto;
}

form {
    width: 75%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
 
