body {
        font-family: Arial, sans-serif;
        background-color: #f7f7f7;
        margin: 0;
    }
    
    #container {
        max-width: 800px;
        margin: auto;
        padding: 20px;
        background-color: #ffffff;
        border: 1px solid #cccccc;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 24rem;
    }
    
    h1 {
        text-align: center;
        color: #2886c5; /* Color principal */
    }
    
    .label {
        font-weight: bold;
        color: #264653; /* Color secundario */
    }
    
    input[type="text"],
    select {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #cccccc;
        border-radius: 4px;
    }
    
    input[type="submit"] {
        background-color: #2719ff; /* Color de botón */
        color: white;
        padding: 10px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }
    
    input[type="submit"]:hover {
        background-color: #4f7fd8; /* Color de botón al pasar el ratón */
    }
    
    a {
        color: #296da5; /* Color del enlace */
        text-decoration: none;
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    
    a:hover {
        text-decoration: underline;
    }
    .header{
        background-color: #ffe500;
        height: 6rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    #mainLogo {
        float: left;
        padding: 5px;
        margin: 5px 30px 0;
    }
    #mainLogo img {
        width: 143px;
    }
    .header:after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        height: 6.5rem;
        background: transparent url(/media/header.png) repeat-x 0 100%;
    }