/* EasyPath Registration Fields — Front-end Styles */

.easypath-field { margin-bottom: 18px; }

.easypath-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: inherit;
}

.easypath-required {
    color: #e53935;
    margin-inline-start: 3px;
}

.easypath-optional {
    font-size: 0.82em;
    color: #888;
    font-weight: normal;
    margin-inline-start: 6px;
}

.easypath-field input[type="text"],
.easypath-field input[type="tel"],
.easypath-field input[type="email"],
.easypath-field input[type="url"],
.easypath-field select,
.easypath-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #333;
}

.easypath-field input:focus,
.easypath-field select:focus,
.easypath-field textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,.15);
    outline: none;
}

.easypath-field input.easypath-error,
.easypath-field select.easypath-error,
.easypath-field textarea.easypath-error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,.12);
}

.easypath-field-error-msg {
    color: #e53935;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.easypath-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.easypath-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}
