.lead-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.5s ease forwards;
    overflow-y: auto;
}
.modal-container {
    max-width: 800px;
    margin: 40px auto;
}
.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.7s ease forwards;
    transform: translateY(50px);
    opacity: 0;
}
.modal-left {
    background: linear-gradient(135deg, #6C4DF6 0%, #5A3EE8 100%);
    padding: 20px;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.modal-left::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    left: -150px;
}
.modal-left::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    bottom: -100px;
    right: -100px;
}
.modal-right {
    padding: 20px;
    background: #F8F9FF;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.modal-header {
    position: relative;
    margin-bottom: 10px;
}
.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1E1C61;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
}
.modal-header p {
    color: #666;
    font-size: 15px;
}
.close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #6C4DF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}
.close-btn:hover {
    transform: rotate(90deg);
    color: #FF7D29;
}
.form-group {
    margin-bottom: 0px;
    position: relative;
}
.form-control {
    border-radius: 10px;
    padding: 7px 40px 7px 10px;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
    font-size: 15px;
    background: white;
    resize: none;
}
.form-control:focus {
    border-color: #6C4DF6;
    box-shadow: 0 0 0 0.25rem rgba(108, 77, 246, 0.15);
}
.form-label {
    font-weight: 600;
    color: #1E1C61;
    margin-bottom: 5px;
    font-size: 15px;
}
.input-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #aaa;
    font-size: 17px;
}
.btn-submit {
    background: linear-gradient(to right, #6C4DF6, #5A3EE8);
    border: none;
    color: white;
    padding: 7px 10px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}
.btn-submit:hover::before {
    left: 100%;
}
.illustration {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}
.illustration img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.benefits {
    margin-top: 40px;
}
.benefit-item {
    display: grid;
    margin-bottom: 10px;
    grid-template-columns: 60px calc(100% - 60px);
}
.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}
.benefit-text {
    font-size: 15px;
}
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.success-message i {
    font-size: 70px;
    color: #4caf50;
    margin-bottom: 20px;
}
.social-login {
    margin: 25px 0;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    background: white;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.social-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.social-btn img {
    width: 20px;
    margin-right: 10px;
}
.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}
.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eaeaea;
}
.divider span {
    background: #F8F9FF;
    padding: 0 15px;
    position: relative;
    color: #777;
    font-size: 14px;
}
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 0px;
    display: none;
}
.success-message-input {
    color: #28a745;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}
.form-control.error {
    border-color: #dc3545;
}
.form-control.success {
    border-color: #28a745;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}
.trigger-btn {
    background: linear-gradient(to right, #6C4DF6, #5A3EE8);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(108, 77, 246, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}
.trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 77, 246, 0.4);
}
@media (max-width: 767px) {
    .modal-left {
        display: none;
    }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 5s ease-in-out infinite;
}