/* ============================================
   MODERN LOGIN FORM ELEMENTS
   ============================================ */

input[type="text"],
input[type="password"],
textarea,
textarea.form-control {
    height: 50px;
    margin: 0;
    padding: 10px 0 !important;
    vertical-align: middle;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: #333;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

textarea,
textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 24px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
textarea.form-control:focus {
    outline: 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #4f6bff !important;
    box-shadow: none !important;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder,
textarea.form-control:-moz-placeholder {
    color: #999;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
    color: #999;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
    color: #999;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder,
textarea.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

/* Sign In Button */
button.btn {
    height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #4f6bff !important;
    border: none !important;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px !important;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(79, 107, 255, 0.3) !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

button.btn:hover {
    opacity: 1 !important;
    color: #fff;
    background: #3d56e0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 107, 255, 0.4) !important;
}

button.btn:active {
    outline: 0;
    opacity: 1 !important;
    color: #fff;
    background: #3d56e0 !important;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(79, 107, 255, 0.3) !important;
}

button.btn:focus {
    outline: 0;
    opacity: 1 !important;
    background: #3d56e0 !important;
    color: #fff;
}

button.btn:active:focus,
button.btn.active:focus {
    outline: 0;
    opacity: 1 !important;
    background: #3d56e0 !important;
    color: #fff;
}
