/* Obecné styly pro WPForms formulář */
.wpforms-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Nadpis formuláře */
.wpforms-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

/* Popis sekce */
.wpforms-description {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: normal;
}

/* Styly pro všechna vstupní pole */
.wpforms-field {
    /*margin-bottom: 25px;*/
    padding: 8px 0 !important;
}

.wpforms-field-label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: normal;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="url"],
.wpforms-field textarea,
.wpforms-field select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 5px 0;
    background: transparent;
    font-size: 16px;
    border-radius: 0;
    box-shadow: none;
}

.wpforms-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Checkbox pro podmínky */
.wpforms-field-checkbox {
    /*margin-top: 30px;*/
}

.wpforms-field-checkbox ul {
    padding:0;
    list-style: none;
}

.wpforms-field-checkbox li {
    margin-bottom: 10px;
    list-style: none;
}

.wpforms-field-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.wpforms-field-checkbox label {
    font-size: 14px;
}

/* Odkaz na podmínky */
.wpforms-field-checkbox a {
    color: #000;
    text-decoration: underline;
}

/* Tlačítko odeslat */
.wpforms-submit-container {
    margin-top: 30px;
    text-align: left;
}

.wpforms-submit {
    background-color: #afca0b;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0;
    text-transform: uppercase;
    transition: background-color 0.3s;
    padding: 20px 35px 20px 35px;
    border-radius: 50px 50px 50px 50px;
}

.wpforms-submit:hover {
    background-color: #333;
}

/* Odstranění výchozích stylů WPForms */
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

.wpforms-form .wpforms-field-row {
    width: 100%;
}

.wpforms-field-description {
    font-size: 12px;
    color: #34a0a4;
    margin-top: 5px;
}