﻿.input-containers {
    padding: 0 50px;
}

div.content {
    color: #fff;
    padding-left: 40px;
    padding-bottom: 1px;
    margin: 20px 0 15px;
    border-radius: 5px;
    position: relative;
}

    div.content.link {
        padding: 0px;
        margin-top: 5px;
        font-size: .85em;
        margin-bottom: 0px;
    }

    div.content.error-msg-container {
        padding: 0;
        text-align: center;
        margin-top: 0;
    }

#errorMessage {
    display: block;
    min-height: 20px;
    line-height: 20px;
    font-size: .85em;
    font-weight: 600;
}

div.content input.txtbx {
    width: 100%;
    border: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 16px;
    padding: 8px 10px 0;
    background: #fff;
    color: #000;
    border-bottom: 1px solid rgba(15, 44, 88, 0.3);
    border-radius: 0 !important;
    line-height: 20px !important;
    height: 40px !important;
}

    div.content input.txtbx:-webkit-autofill,
    div.content input.txtbx:-webkit-autofill:hover,
    div.content input.txtbx:-webkit-autofill:focus,
    div.content input.txtbx:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
    }

/* CSS specific to iOS devices */
@supports (-webkit-overflow-scrolling: touch) {
    div.content input.txtbx {
        padding: 14px 10px 5px;
    }
}

div.content .input-label {
    color: #666;
    font-size: .7em;
    font-weight: 800;
    position: absolute;
    top: -2px;
    left: 45px;
}

div.content .fas {
    position: absolute;
    left: 0;
    top: -1px;
    background-color: #fff;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    font-size: 1.4em;
    color: #434343;
    border-right: 1px solid rgba(15, 44, 88, 0.3);
    border-bottom: 1px solid rgba(15, 44, 88, 0.3);
}

div.content .transition {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    outline: none;
}

div.content .fas:before {
    padding-top: 8px;
}

#onlineDocumentsViewContainer {
    background: #f9f9f9;
}

div.content input.txtbx:focus, div.content input.txtbx:focus ~ .fas {
    border-bottom: 1px solid #24344b;
}

div.content .message {
    color: #000;
    font-size: 1.1em;
    font-weight: 400;
    padding: 0;
    margin: 0;
    min-height: 30px;
    line-height: 30px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -o-user-select: none;
    -moz-user-select: none;
}

    div.content .message.error {
        color: red;
        font-size: 0.9em;
        font-weight: 600;
        min-height: 20px;
        line-height: 20px;
    }
