/* Emlo Kontakt Forma Styles */

.emlo-contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    /* Or default theme font */
}

.emlo-form-group {
    margin-bottom: 20px;
}

.emlo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.emlo-form-group label span.required {
    color: #e74c3c;
    margin-left: 2px;
}

.emlo-form-group input[type="text"],
.emlo-form-group input[type="email"],
.emlo-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bbb;
    /* Visible border */
    background-color: #fff;
    border-radius: 4px;
    /* Slightly more rounded */
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.emlo-form-group input:focus,
.emlo-form-group textarea:focus {
    border-color: #5a5a5a;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    /* Shadow on focus */
}

/* GDPR Checkbox */
.emlo-form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.emlo-form-group.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
}

.emlo-form-group.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.emlo-form-group.checkbox-group label a {
    color: #d81b60;
    /* Pinkish color from image */
    text-decoration: none;
    font-weight: 600;
}

.emlo-form-group.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.emlo-form-actions {
    margin-top: 25px;
}

#emlo-submit-btn {
    background-color: #5a5a5a;
    /* Dark grey/brownish */
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s;
}

#emlo-submit-btn:hover {
    background-color: #444;
}

#emlo-submit-btn .dashicons {
    margin-left: 8px;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Messages */
#emlo-form-response {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.emlo-success-message {
    color: #27ae60;
    background: #eafaf1;
    padding: 15px;
    border: 1px solid #d5f5e3;
    border-radius: 4px;
}

.emlo-error-message {
    color: #c0392b;
    background: #fdedec;
    padding: 15px;
    border: 1px solid #fadbd8;
    border-radius: 4px;
}

/* Loading State */
.emlo-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Grid System for Service Form */
.emlo-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.emlo-col-6,
.emlo-col-12 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .emlo-col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.emlo-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bbb;
    background-color: #fff;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    height: 46px;
    /* Match height of text inputs approximately */
}