.lead-popup {
    position: fixed;

    right: 30px;
    bottom: -500px;

    width: 380px;

    z-index: 9999;

    transition: all 0.5s ease;
}

.lead-popup.show {
    bottom: 30px;
}

.lead-popup__box {
    position: relative;

    background: #fff;

    padding: 30px;

    border-radius: 16px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.lead-popup__close {
    position: absolute;

    top: 10px;
    right: 15px;

    background: none;
    border: none;

    font-size: 28px;

    cursor: pointer;
}

.lead-popup__title {
    margin-top: 0;
	font-weight: 300;
    font-size: 24px;
	margin-bottom: 10px;
}

.lead-popup__text {
    color: #666;

    line-height: 1.5;

    margin-bottom: 20px;
}

#lead-form input {
    width: auto;

    margin-bottom: 15px;

    padding: 14px;

    border: 1px solid #ddd;

    border-radius: 10px;

    box-sizing: border-box;
}

#lead-form button {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 10px;

    background: #692cdc;

    color: #fff;

    cursor: pointer;
}

.lead-hidden-field {
    position: absolute;

    left: -9999px;

    opacity: 0;
}

.lead-form-error {
    color: red;

    margin-bottom: 15px;

    font-size: 14px;
}

.lead-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 20px;

    font-size: 13px;

    line-height: 1.5;

    color: #666;
}

.lead-checkbox input {

    margin-top: 3px;

    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

.lead-checkbox a {

    color: #0066ff;

    text-decoration: underline;
}

@media (max-width: 480px) {

    .lead-popup {

        right: 10px;
        left: 10px;

        width: auto;
    }

}