/**
 * MailerLite Popup Style 1 - Minimalistyczny
 */

/* Overlay - tło przyciemniające */
#mlp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kontener popupu */
#mlp-popup-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    animation: mlpFadeIn 0.5s ease;
}

/* Przycisk zamknięcia */
#mlp-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    z-index: 1000;
    line-height: 1;
    transition: color 0.3s;
}

#mlp-close-button:hover {
    color: #333;
}

/* Zawartość popupu */
#mlp-popup-content {
    padding: 30px;
}

/* Style formularza MailerLite */
#mlp-popup-content .mailerlite-form {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#mlp-popup-content .mailerlite-form-title h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

#mlp-popup-content .mailerlite-form-description p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

#mlp-popup-content .mailerlite-form-field {
    margin-bottom: 20px;
}

#mlp-popup-content .mailerlite-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

#mlp-popup-content .mailerlite-form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}

#mlp-popup-content .mailerlite-form-field input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

#mlp-popup-content .mailerlite-subscribe-button-container {
    text-align: center;
    margin-top: 10px;
}

#mlp-popup-content .mailerlite-subscribe-submit {
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#mlp-popup-content .mailerlite-subscribe-submit:hover {
    background-color: #3a7bc8;
}

#mlp-popup-content .mailerlite-form-loader {
    display: none;
    text-align: center;
    padding: 10px;
    color: #666;
}

#mlp-popup-content .mailerlite-form-response {
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

#mlp-popup-content .mailerlite-form-response h4 {
    margin: 0;
    font-size: 16px;
}

/* Animacja */
@keyframes mlpFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność */
@media (max-width: 600px) {
    #mlp-popup-container {
        width: 95%;
    }

    #mlp-popup-content {
        padding: 20px;
    }

    #mlp-popup-content .mailerlite-form-title h3 {
        font-size: 20px;
    }

    #mlp-popup-content .mailerlite-form-description p {
        font-size: 14px;
    }
}