/**
 * Frontend Styles for WeLive Expose Plugin
 */

.welive-expose-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

.welive-expose-form {
    background: #2F282A;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welive-expose-form h2 {
    margin-top: 0;
    color: #fff;
}

.welive-expose-form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.welive-expose-form-section:last-of-type {
    border-bottom: none;
}

.welive-expose-form-section h3 {

    margin-bottom: 20px;
    font-size: 1.2em;
}

.welive-expose-field {
    margin-bottom: 20px;
}

.welive-expose-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.welive-expose-field .required {
    color: #d32f2f;
}

.welive-expose-field input[type="text"],
.welive-expose-field input[type="email"],
.welive-expose-field input[type="tel"],
.welive-expose-field select,
.welive-expose-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    
        background: #47393B;
        color: #fff;
        border: 1px solid #666;
        border-radius: 4px;
        padding: 10px;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        box-shadow: none;
    
}

.welive-expose-field input:focus,
.welive-expose-field select:focus,
.welive-expose-field textarea:focus {
    outline: none !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 2px rgba(34, 55, 73, 0.1);
    background: #2F282A !important;
    color:white !important
}


.welive-expose-consent {
    margin-bottom: 20px;
    padding: 15px;
    background: #47393B;
    border-radius: 4px;
}

.welive-expose-consent-required {
    border-left: 4px solid #223749;
}

.welive-expose-consent label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.welive-expose-consent input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.welive-expose-consent .consent-text {
    flex: 1;
    line-height: 1.6;
}

.welive-expose-consent .consent-text a {
    color: #AB9B8C;
    text-decoration: underline;
}

.welive-expose-withdrawal-text {
    background:#47393B;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.welive-expose-withdrawal-text h4 {
    margin-top: 0;
}

.welive-expose-withdrawal-text .withdrawal-content {
    line-height: 1.8;
    white-space: pre-line;
}

.welive-expose-form-actions {
    margin-top: 30px;
    text-align: center;
}

.welive-expose-submit {
    background: #856256;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.welive-expose-submit:hover:not(:disabled) {
    background: #AB9B8C;
}

.welive-expose-submit:disabled {
    background: #3e3e3e;
    cursor: not-allowed;
    color: #5b5b5b;
}

.welive-expose-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.welive-expose-message.welive-expose-success {
    background: #4caf50;
    color: #fff;
    display: block;
}

.welive-expose-message.welive-expose-error {
    background: #f44336;
    color: #fff;
    display: block;
}

.welive-expose-message.welive-expose-info {
    background: #2196f3;
    color: #fff;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .welive-expose-form-wrapper {
        padding: 10px;
    }

    .welive-expose-form {
        padding: 20px;
    }
}

