body {
    font-family: Arial, sans-serif;
        background-size: cover;
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
        .container {
        max-width: 500px;
        margin: 20px auto;
        background-color: #ffffffbb;
        box-shadow: 0px 4px 8px #a5a5aa;
        border-radius: 5px;
        overflow: hidden;
        padding: 20px;
        margin-top: 3%;
    }
    /* logo */
        .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
        .logo img {
        height: 100px;
    }
    .header {
    grid-area: header;
    background-image: url("../vistas/inicio/img/Cintillo9.png"); 
    background-repeat: no-repeat;
    background-size: cover;       
    background-position: center;  
    box-shadow: 0px 4px 8px #a5a5aa;
    height: 70px;
    width: auto;                 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow: hidden;
    
}

    /* titulo */
    h2 {
        text-align: center;
        color: #000; 
        margin-bottom: 15px;
        font-size: 18px;
    }

    /* estilos del formulario */
    form {
        display: flex;
        flex-direction: column;
    }
    label {
        margin-bottom: 5px;
        font-weight: bold;
        color: #000;
    }
    input {
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    input:focus {
        outline: none;
        border-color: #ccc;
        box-shadow: 0 2px 4px #d2d2d4;
        }

    /* boton */
    button {
        background-color: #2477BD;; /* Color principal */
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    button:hover {
        background-color: #8697ff;
        color: #000;
    }

    /* pie de pagina */
    p {
        text-align: center;
        margin-top: 15px;
    }
    a {
        color: #2477bd;
        text-decoration: none;
        border-bottom: 2px solid transparent; 
        transition: all 0.2s ease;
        border-radius: 5px;
        padding: 8px;

    }
    a:hover{
        border-bottom: 2px solid #2477BD;
        color: #2477BD;
    }

    .error{
        background-color: rgb(175, 74, 74);
        color: black;
        padding: 10px;
        width: 95%;
        border-radius: 5px;
        margin: 20px auto;
    }
    .recuperar{
       text-align: center;
        margin: 20px;
    }

    
