#oklegal-cf-modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oklegal-cf-content {
    background: #ffffff;
    padding: 30px 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#oklegal-cf-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

#oklegal-cf-close:hover {
    color: #9c3895;
}

.oklegal-cf-content h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
    color: #9c3895;
    text-align: center;
}

#oklegal-cf-form input,
#oklegal-cf-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1.8px solid #c1c9d7;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#oklegal-cf-form input:focus,
#oklegal-cf-form textarea:focus {
    outline: none;
    border-color: #9c3895;
    box-shadow: 0 0 5px rgba(156, 56, 149, 0.5);
}

#oklegal-cf-form textarea {
    min-height: 110px;
    resize: vertical;
}

#oklegal-cf-form button {
    background-color: #9c3895;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#oklegal-cf-form button:hover {
    background-color: #742a6f;
}

#oklegal-cf-response {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
