
/* Form control */
.form-control {
    line-height: 1.5;
    color: #131618;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    background-color: #ddeeff;
    border-color: #80bdff;
    padding: .475rem .75rem;
    border-radius: 0.25rem;

}

.form-control:focus {
    color: #222;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-radius: 0.95rem !important;
}
::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.24) !important;
}
::-moz-placeholder {
    color: rgba(0, 0, 0, 0.24) !important;
}
:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.24) !important;
}
:-moz-placeholder {
    color: rgba(0, 0, 0, 0.24) !important;
}
textarea::placeholder{
    color: rgba(0, 0, 0, 0.24) !important;
}
::placeholder {
    color: rgba(0, 0, 0, 0.24) !important;
}