a {
    color: black;
}
a:hover, a:active {
    color: #D26232;
}
/* Position label behind input to make it look like a placeholder */
.background-label{
    z-index: -10 !important;
    display: block;
    position: absolute;
    padding-left: 18px;
    padding-top: 6px;
    font-weight: normal;
    color: grey;
}
/* Position input infront of label and making it seethrough */
.foreground-input{
    z-index: 10 !important;
    text-align: right;
    border-radius: 4px !important;
    background-color:rgba(0, 0, 0, 0.0);
}
.foreground-input:focus{
    background-color:rgba(0, 0, 0, 0.0);
}
/* align div vertically */
.vertically-align{
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}
/* Styling concerning inputs */
.input-style{
    color: black;
}
.input-style:focus, .input-style:active {
    color: black;
    border-color: #D26232;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(210, 98, 50, 0.6);
}
.input-style:hover{
    color: #D26232;
    border-color: #D26232;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(210, 98, 50, 0.6);
}
/* Making disabled inputs seethrough */
.form-control[disabled]{
    background-color: rgba(238,238,238, 0.5);
}