.inp {
    position: relative;
    margin: 0px 0px 15px;
    width: 100%;
    max-width: 280px;
    border-radius: 3px;
    padding-top: 0px;
}
.inp .label {
    position: absolute;
    top: 18px;
    left: 11px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    transform-origin: 0px 0px;
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.2s ease 0s;
    pointer-events: none;
    z-index: 2;
    width: inherit;
    text-align: left;
}

.inp input:-webkit-autofill + span.label, .inp input:-webkit-autofill:hover + span.label, .inp input:-webkit-autofill:focus + span.label {
    transform: translate3d(0, -10px, 0) scale(0.75);
}

.inp input + .label .required {
    display: contents;
}
.inp .focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
}
.inp input.form-control, .inp input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 16px 12px 0 12px;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    background: white;
    border: 1px solid #c3c3c3;
    color: #000;
    transition: all 0.15s ease;
}
.inp input:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.inp input:not(:-moz-placeholder-shown) + .label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:not(:-ms-input-placeholder) + .label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -10px, 0) scale(0.75);
}
.inp input:not(:placeholder-shown) + .label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -10px, 0) scale(0.75);
}
.inp input:focus {
    background: rgba(0, 0, 0, 0.05);
    outline: none;
}
.inp input:focus + .label {
    color: #000;
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:focus + .label + .focus-bg {
    transform: scaleX(1);
    transition: all 0.1s ease;
}
.infohidden {
    cursor: pointer;
    color: grey
}
.infohidden + .form-control-comment {
    position: absolute;
    width: 250px;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ebebeb;
    text-align: center;
    padding: 10px;
    transition: all .25s ease;
    -moz-transition: all .25s ease;
    -webkit-transition: all .25s ease;
    right: 0px;
    background: white;
    margin-top: 26px;
}
.infohidden:hover + .form-control-comment {
    visibility: visible;
    opacity: 1;
    transition: all .25s ease;
    -moz-transition: all .25s ease;
    -webkit-transition: all .25s ease;
}
.content-comment {
    position: absolute;
    right: -30px;
    top: 28px;
}
.inp select.form-control-select {
    background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 25 25\" enable-background=\"new 0 0 25 25\" xml:space=\"preserve\" height=\"25px\" width=\"25px\"><g><path d=\"M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\"/></g></svg>") right center no-repeat;
    border: none;
    font-weight: normal;
    font-size: 16px;
    border: 1px solid #c3c3c3;
    color: black;
    padding: 12px 0px;
    height: 56px!important;
    padding-left: 15px;
    border-radius: 0px;
}
.inp + .required {
    position: absolute;
    left: 280px;
    top: 16px;
}
button.btn.btn-primary.form-control-submit {
    margin: 32px 15px;
}
.form-control-label span.input-group-btn {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
}

.form-control-label span.input-group-btn button {
    background: transparent;
}

.custom-checkbox label {
    padding-left: 0px;
}

.custom-checkbox label .checkboxcontent {
    position: absolute;
    left: 0px;
    z-index: 1;
}
#identity .custom-checkbox label .checkboxcontent {
    position: relative;
}
#authentication .custom-checkbox span.text {
    padding-left: 30px;
}