button {
    margin: 1.5rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    color: var(--white_color);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-10px);
}

/*Estilos para boton "Agendar una demo gratis"*/
.button_demo {
    background-color: var(--blue-300);
    height: 4.8rem;
    width: 19.1rem;
}

.button_demo img {
    width: 2.5rem;
    height: 2.5rem;
    pointer-events: none;
    vertical-align: middle;
}

/*Estilos para boton de form*/
.clear {
    display: flex;
    justify-content: right;
}

.button {
    font-size: 17px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    margin-bottom: 20px;
    width: 20%;
    height: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    background-color: var(--blue-300);
    border-color: var(--blue-300);
    color: var(--white_color);
}


@media (max-width: 768px) {
    .clear {
        font-size: 12px;
    }

    .button {
        width: 90%;
        height: 100%;
    }
}

/*Buttons para index*/
.button_index{
    width: 13.188rem;
    height: 3.75rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--lightblue-300);
    background-color: var(--blue-300);
    right: 25px;
}

.button_index img{
    width: 15.33px;
    height: 15.33px;
    margin-right: 10px;
}

#campus_button{
    background-color: #F2F4FB;
    color: var(--darkblue-400);
}