﻿.consulting-form-wrap1 {
    background: linear-gradient(145deg, rgba(109,48,251,0.15), rgba(0,0,0,0.6));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(109,48,251,0.25);
    transition: 0.3s ease;
}

    .consulting-form-wrap1:hover {
        box-shadow: 0 25px 70px rgba(109,48,251,0.35);
    }



.form-btn {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.th-btn.style3 {
    min-width: 170px;
    transition: all 0.3s ease;
}

    .th-btn.style3:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(109,48,251,0.35);
    }

.th-btn.style4 {
    min-width: 250px;
    background: linear-gradient(135deg,#6d30fb,#8b5cf6);
    border: none;
    transition: all 0.3s ease;
}

    .th-btn.style4:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(109,48,251,0.45);
    }
.contact-form p.text-center {
    position: relative;
    margin: 25px 0 !important;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
}

    .contact-form p.text-center::before,
    .contact-form p.text-center::after {
        content: "";
        flex: 1;
        height: 1px;
        opacity: 0.6;
    }

    .contact-form p.text-center::before {
        background: linear-gradient( to right, transparent, rgba(255,255,255,0.6) );
    }

    .contact-form p.text-center::after {
        background: linear-gradient( to left, transparent, rgba(255,255,255,0.6) );
    }
 

.form-messages {
    font-size: 14px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.remember-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

    .remember-me input {
        accent-color: #6d30fb;
        width: 16px;
        height: 16px;
    }


.btn-spinner {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-spinner i {
        display: inline-block;
        animation: spinnerRotate 1s linear infinite;
        transform-origin: center center;
        will-change: transform;
    }

@keyframes spinnerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.theme-loader-spinner {
    width: 16px;
    height: 16px;
    margin-top:-2px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    animation: spinLoader .8s linear infinite;
}

@keyframes spinLoader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.contract-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.contract-modal-content {
    background: #1c1c1c;
    width: 800px;
    max-height: 80vh;
    margin: 5% auto;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
}

.contract-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.contract-modal-body {
    padding: 25px;
    overflow-y: auto;
    max-height: 60vh;
    line-height: 1.8;
}

.contract-close {
    cursor: pointer;
    font-size: 22px;
}

.contract-modal-body {
    padding: 25px;
    max-height: 65vh;
    overflow-y: auto;
    line-height: 1.8;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .contract-modal-body::-webkit-scrollbar {
        display: none;
    }

body.modal-open {
    overflow: hidden;
}