/* Phone fields use type=tel (spam-hardening). Theme style.css only
   styles text/number/email, so tel looked like a raw browser input. */
.custom-form input[type="tel"],
.listsearch-input-item input[type="tel"] {
    float: left;
    border: 1px solid #e5e7f2;
    background: #f9f9f9;
    width: 100%;
    padding: 13px 20px 14px 34px;
    border-radius: 4px;
    color: #7d93b2;
    font-size: 12px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    overflow: hidden;
    z-index: 1;
}

.custom-form input[type="tel"]:focus,
.listsearch-input-item input[type="tel"]:focus {
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
}

.custom-form input[type="tel"]::-webkit-input-placeholder,
.listsearch-input-item input[type="tel"]::-webkit-input-placeholder {
    color: #7d93b2;
    font-weight: 500;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.custom-form.dark-form input[type="tel"] {
    border: none;
    background: rgba(255, 255, 255, 0.08);
}

.main-register .custom-form input[type="tel"] {
    margin: 0;
    padding: 8px;
}
