     
     @import url('https://fonts.cdnfonts.com/css/quicksand');
    @import url('https://fonts.cdnfonts.com/css/roboto');

     :root {
            --primary_color: #4A2C2A;
            --secondary_color: #8A8C66;
            --accent_color_1: #E97451;
            --accent_color_2: #FFD700;
            --text_color: #F5F5DC;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        body {
            background-color: var(--secondary_color);
            font-family: 'Roboto', sans-serif;
            color: var(--text_color);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        
        .main_Header {
            padding: 10px 20px;
            background-color: var(--text_color);
            color: var(--primary_color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .div_left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo {
            width: 80px;
            height: 60px;
            object-fit: contain;
        }

        .header_options {
            display: flex;
            gap: 30px;
            list-style-type: none;
            align-items: center;
        }

        .header_options li {
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
        }

        .header_Links {
            text-decoration: none;
            color: var(--primary_color);
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 5px;
        }

        
.botonDeInicio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    padding: 8px 16px;
    border-radius: 10px;
    background-color: var(--accent_color_1);
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: var(--text_color);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: black;
}

        

        .botonDeInicio:hover {
            box-shadow: #333;
            transform: translateY(-2px);
        }

        


        main {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }
        .formAcceso {
            background-color: var(--text_color);
            display: flex;
            flex-direction: column;
            width: min(500px, 90vw);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            gap: 25px;
        }
        .imagenDelForm {display: flex;
    position: relative;
height: 5%;
width: 5%;}

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group p {
            color: var(--primary_color);
            font-weight: 500;
            font-size: 16px;
            margin: 0;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }


        

        .login-button {
            width: 100%;
            padding: 15px;
            background-color: var(--accent_color_1);
            color: black;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
           text-decoration: none;
            margin-top: 10px;

            text-align: center;        
        }

        .login-button:hover {
            
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(74, 44, 42, 0.3);
        }

        .modal-overlay {
    position: fixed;       
    top: 0;                 
    left: 0;                
    width: 100%;           
    height: 100%;          
    background-color: rgba(0, 0, 0, 0.6);
    display: none;          
    justify-content: center; 
    align-items: center;    
    z-index: 1000;         
    animation: fadeIn 0.3s ease-out; 
}

.modal-content {
    background-color: white;  
    padding: 40px;           
    border-radius: 15px;     
    text-align: center;    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;       
    width: 90%;             
    transform: scale(0.9);  
    animation: modalAppear 0.3s ease-out forwards; /
}

.modal-content h3 {
    color: #d32f2f;         
    margin-bottom: 15px;    
    font-size: 20px;        
}

.modal-content p {
    color: #333;           
    margin-bottom: 25px;     
    font-size: 16px;         
    line-height: 1.5;      
}

.modal-button {
    background-color: var(--accent_color_1); 
    color: white;            
    border: none;            
    padding: 12px 30px;    
    border-radius: 8px;   
    cursor: pointer;      
    font-size: 16px;       
    font-weight: 600;        
    transition: all 0.3s ease; 
    font-family: 'Quicksand', sans-serif; 
}



.modal-button:active {
    transform: translateY(0); 
}

     
        .footer {
            background-color: var(--primary_color);
            padding: 30px 20px;
            color: var(--text_color);
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .footer-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            flex: 1;
        }

        .footer-column h4 {
            color: var(--accent_color_2);
            margin-bottom: 15px;
            font-weight: 600;
        }

        h4{
            color: var(--accent_color_2);
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer_Links {
            color: var(--text_color);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer_Links:hover {
            color: var(--accent_color_2);
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 245, 220, 0.2);
        }

        .footer-bottom p {
            color: var(--accent_color_2);
            font-size: 14px;
            margin: 0;
        }

        @media (max-width: 768px) {
    
    .header_options {
        display: none; 
    }
}
        @media (max-width: 768px) {
    .main_Header {
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }

    .div_left {
        flex-direction: column;
        gap: 15px;
    }

    .header_options {
        flex-direction: column; 
        text-align: center;
        gap: 10px;
    }
    
    .botonDeInicio {
        width: 100%; /
    }
}



        @media (max-width: 576px) {
    .formAcceso {
        padding: 20px; 
        width: 95vw; 
    }

    .imagenDelForm img {
        width: 70px;
        height: auto; 
    }
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: Row; 
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-table {
        grid-template-columns: 1fr; 
    }

    .footer-column {
        align-items: center; 
    }}