/* ================= HEADER ================= */

body{
    margin: 0;
    padding: 0;
    background-color: white;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-bottom: 2px solid #d6c2ff;
    background-color: #7b2cbf;
    padding: 10px;
}

.header a{
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    color: white;
    padding: 0 10px; 
    height: inherit; 
    display: flex;
    align-items: center;
}

.logo{
    display: flex;
    margin-block-start: 3px;
    margin-block-end: 3px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.logo img{
    margin: 0px 0px 0px 5px;
    display: flex;
    border-radius: 10px;
}

/* ================= MENU ================= */

.header ol{
    list-style: none; 
    display: flex;
    height: inherit;
}

.header ol li{
    height: inherit;
}

.link:hover {
    color: white;
    background-color: #9d4edd;
    border-radius: 5px;
}

ol{
    margin: 0;
    padding: 0;
}

.menu{
    height: inherit;
}

.menu li{
    display: inline;
}

/* ================= FOOTER ================= */

.footer{
    display: block;
    text-align: center;
    height: 50px;
    border-top: 2px solid #d6c2ff;
    background-color: #7b2cbf;
    padding: 1em;
}

a:link{
    text-decoration: none;
}

.social{
    width: 32px;
    height: 32px;
    display: inline-block;
}

.footer-fb{
    background-image: url('../images/fb.ico');
}

.footer-twitter{
    background-image: url('../images/twitter.ico');
}

.footer-instagram{
    background-image: url('../images/instagram.ico');
}

.footer-linkedin{
    background-image: url('../images/linkedin.ico');
}

/* ================= FORMULARIO ================= */

form{
    text-align: center;
    margin-top: 30px;
}

.caja{
    display: inline-block;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #d6c2ff;
    box-shadow: 0px 0px 8px rgba(123, 44, 191, 0.15);
}

.caja label{
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: 'Quicksand', sans-serif;
    color: #5a189a;
    font-weight: bold;
}

.caja input{
    width: 220px;
    height: 35px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;  
    border: 1px solid #c77dff;
    border-radius: 8px;
    outline: none;
    background-color: white;
}

.caja input:focus{
    border: 2px solid #7b2cbf;
}

/* ================= BOTONES ================= */

.submit{
    width: 120px;
    height: 40px;
    font-family: 'Quicksand', sans-serif;
    color: white;
    background-color: #7b2cbf;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit:hover{
    background-color: #9d4edd;
}

/* ================= TABLA ================= */

.tablita{
    display: inline-block;    
    margin-top: 30px;
}

.tabla{
    border-collapse: collapse;
    font-family: 'Quicksand', sans-serif;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(123, 44, 191, 0.15);
}

table tr th{
    border: 1px solid #d6c2ff;
    width: 130px;
    height: 40px;
    color: white;
    background-color: #7b2cbf;
}

td{
    border: 1px solid #d6c2ff;
    width: 130px;
    height: 35px;
    text-align: center;
    background-color: white;
}