form .input-wrapper {
    position: relative;
}

form .field-image {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin: 30px auto;
    background: #303031;
    background: linear-gradient(to bottom, #303031 0%,#5d5760 100%);
}

form .field-header {
    position: relative;
}

form .field-title {
    text-align: center;
    color: #161616;
    font-size: 21px;
    font-weight: bold;
    position: relative;
}

form .field-subtitle {
    text-align: center;
    color: #777;
    margin: 10px auto 40px auto;
    font-size: 13px;
    position: relative;
}

form .field-wrapper {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
}

form .field-wrapper .field {
    position: relative;
    display: table-cell;
    vertical-align: top;
    height: 100%;
}

form .field label > span > i {
    font-style: normal;
    color: red;
}

form .field > label > input[type='text']:focus, form .field > label > input[type='password']:focus, form .field > label > input[type='email']:focus, form .field > label > input[type='tel']:focus {
    color: #1c1c1d;
    border-color: #b3a130;
}

[data-type='validator-error'] {
    font-size: 13px;
    position: absolute;
    z-index: 10;
    margin-top: 2px;
    color: #ffffff;
    background: rgb(200, 53, 53);
    box-shadow: 0 6px 2px -2px rgba(211, 77, 77, 0.47);
    padding: 4px 10px;
    border-radius: 1px;
    pointer-events: none;
}

[data-type='validator-error']:before {
    content: '';
    width: 0;
    height: 0;
    top: -5px;
    position: absolute;
    left: 6px;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid #c83535;
}

select {
    opacity: 0;
}

select:hover {
    cursor: pointer;
}

select:focus {
    outline: none;
}

.select-box {
    font-size: 14px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    color: #1b1b1b;
    border: 1px solid #a8a8a8;
    border-top-color: #cac9c9;
    border-bottom-color: #4d4d4d;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: inset 0 -10px 18px -10px #c2bebe;
}

.select-box select {
    opacity: 1;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    padding: 5px 30px 5px 8px;
    border: none;
    background: rgba(255, 36, 36, 0);
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
}

.select-box select[disabled] {
    cursor: default;
    background-color: #e8e8e8;
}

.select-box.multiple select {
    height: 146px;
}

.select-box:after {
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    padding: 2px 8px;
    content: '\f078';
    color: #000;
}

.select-box select:focus {
    outline: none;
}

.select-box.multiple:after {
    display: none;
}

.select-box.disabled:before {
    color: #c7c7c7;
}

form input[type='text'].error, form input[type='password'].error, form input[type='email'].error, form input[type='tel'].error, form textarea.error, form button.error {
    border: 1px solid #fa4531;
}

label:hover:before {
    border: 1px solid #4778d9!important;
}

form button:focus, input[type='submit']:focus, input[type='reset']:focus, input[type='file']:focus + .file-input-fake-button {
    outline: none;
}