.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: rgb(116, 116, 116);
    box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
}

.btn {
    border: solid, rgb(116, 116, 116);
    transition: all 0.1s ease;
    border-radius: 0;
    border-color: rgb(116, 116, 116);
    background-color: rgb(116, 116, 116);
}

.btn:hover {
    transform: scale(1.005);
    border-color: rgb(102, 102, 102);
    background-color: rgb(102, 102, 102);
    box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
}

.btn:active {
    border-color: rgb(116, 116, 116) !important;
    background-color: rgb(116, 116, 116) !important;
    transform: scale(1);
    box-shadow: none;
}
