/* Botón principal */
.cta-button {
    margin-top: 20px;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background: #0056b3;
}

/* Botón secundario */
.secondary-button {
    margin-top: 10px;
    padding: 10px;
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.secondary-button:hover {
    background: #cc7a00;
}

/* Mensajes */
.success {
    color: green;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.error {
    color: red;
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover {
    background: #0056b3;
}

.success {
    color: green;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.error {
    color: red;
    text-align: center;
    margin-top: 20px;
}

