.custom-input {
    position: relative;
    margin-top:4px;
    margin-bottom:4px;
}
    .custom-input input[type="text"], .custom-input input[type="password"] {
/*        border: 2px solid #afbdcf;
        border-radius: 5px;*/
        color: #000;
        font-size: 16px;
        padding-left: 20px;
        box-shadow: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .custom-input label {
        position: absolute;
        color: #afbdcf;
        background-color: #fff;
        top: -12px;
        right: 14px;
        font-size: 12px;
        margin-top: 7px;
        padding: 4px 8px;
        z-index: 1000;
        border-radius: 0.5rem;
/*        box-shadow: 0 0 0.2rem rgba(0,0,0,.15) !important;*/
    }
    .dropdown label {
        top: -16px;
    }

.custom-dropdown {
    position: relative;
}

    .custom-dropdown label {
        position: absolute;
        color: #afbdcf;
        background-color: #fff;
        top: -20px;
        font-size: 12px;
        margin-top: 7px;
        z-index: 1000;
    }

.custom-textarea {
    position: relative;
    width:100%
}
    .custom-textarea textarea {
        border: 2px solid #afbdcf;
    }

    .custom-textarea label {
        position: absolute;
        color: #afbdcf;
        background-color: #fff;
        top: -12px;
        right: 12px;
        font-size: 12px;
        margin-top: 7px;
        padding: 4px;
        z-index: 1000;
    }
    .custom-textarea textarea {
        border-radius:0.75rem;
        width: 100%
    }
