.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: -20px;
        right: 14px;
        font-size: 12px;
        margin-top: 7px;
        padding: 4px;
        z-index: 900;
    }

.custom-dropdown {
    position: relative;
}

    .custom-dropdown label {
        position: absolute;
        color: #afbdcf;
        background-color: #fff;
        top: -20px;
        font-size: 12px;
        margin-top: 7px;
        z-index: 900;
    }

.custom-textarea {
    position: relative;
}
    .custom-textarea textarea {
        border: 2px solid #afbdcf;
    }

    .custom-textarea label {
        position: absolute;
        color: #afbdcf;
        background-color: #fff;
        top: -20px;
        right: 12px;
        font-size: 12px;
        margin-top: 7px;
        padding: 4px;
        z-index: 900;
    }
