﻿.lead-popup {
    border: 0;
    border-radius: 25px;
    overflow: hidden;
}

.popup-left {
   /* background: linear-gradient(135deg,#0d6efd,#0047b3);*/
    padding: 10px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-logo {
    width: 170px;
    margin: auto;
    margin-bottom: 25px;
    background: #fff;
    padding: 12px;
    border-radius: 15px;
}

.popup-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color:white;
}

.popup-left p {
    /*font-size: 18px;*/
    color: white;
   /* opacity: .9;
    margin-bottom: 25px;*/
}

.popup-left ul {
    padding: 0;
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.popup-left li {
    padding: 8px 0;
    font-size: 17px;
}

    .popup-form h3 {
       /* font-size: 34px;
        font-weight: 700;*/
        margin-bottom: 10px;
    }

    .popup-form p {
        margin-bottom: 30px;
    }

    .popup-form .form-control {
        height: 55px;
        border-radius: 12px;
    }

    .popup-form textarea {
        height: 130px;
        resize: none;
    }

    .popup-form .btn {
        height: 55px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 12px;
    }
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1055;
    transition: .3s;
}

    .popup-close:hover {
        background: #b02a37;
        transform: rotate(90deg) scale(1.05);
    }