/*
Theme Name: Porto Child
Theme URI: https://www.portotheme.com/wordpress/porto
Author: P-THEMES
Author URI: https://www.portotheme.com/
Description: Porto Responsive WordPress + eCommerce Theme.
Version: 1.1
Template: porto
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/
/* Nút đăng ký ngay */
.button-register {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    background-color: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
    text-align: center;
    transition: 0.3s;
    animation: blinkEffect 1.5s infinite;
}

/* Hiệu ứng nhấp nháy */
@keyframes blinkEffect {
    0% { box-shadow: 0 0 10px rgba(0, 115, 230, 0.8); }
    50% { box-shadow: 0 0 20px rgba(0, 115, 230, 1); }
    100% { box-shadow: 0 0 10px rgba(0, 115, 230, 0.8); }
}

/* Popup */
.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    border-radius: 10px;
}

/* Khi popup mở */
.popup-container.active {
    display: block;
}

/* Nút đóng popup */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
}
