.text {
    text-align: center;
    vertical-align: middle;
}

/*Validacion*/
.error {
    background-color: red;
    color: white;
    font-weight: bold;
}

.validado {
    background-color: yellowgreen;
    color: white;
    font-weight: bold;
}

.ok {
    background-color: yellowgreen;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ok:hover {
    /* background-color: darkgreen; */
    background-color: #7C2C82;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-link {
    display: inline-block;
    /* se ajusta al texto */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0.8em 1em;
    border-radius: 16px;
    text-decoration: none;
    color: #7C2C82;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease-in-out;
}

.contact-link:hover {
    background-color: #7C2C82;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}